llvm-project/lldb/packages/Python/lldbsuite/test/functionalities/target_var/Makefile

11 lines
187 B
Makefile

LEVEL = ../../make
include $(LEVEL)/Makefile.rules
a.out: globals.ll
$(CC) $(CFLAGS) -g -c $^ -o globals.o
$(LD) $(LDFLAGS) -g globals.o -o $@
clean::
rm -rf globals.o a.out *.dSYM