Files
Alex Langford 71d63d6107 [lldb][test] Fix Makefile for TestInlineSourceFiles.py (#194078)
The test did not build hidden.o with a custom target triple when
specified. Use CFLAGS from Makefile.rules to fix.
2026-04-27 10:15:56 -07:00

12 lines
157 B
Makefile

C_SOURCES := main.c
CFLAGS_EXTRAS := -gdwarf-5
include Makefile.rules
OBJECTS += inline.o
$(EXE): main.c inline.o
%.o: %.ll
$(CC) $(CFLAGS) $< -c -o $@