1C_SOURCES := main.c 2MAKE_DSYM := NO 3 4include Makefile.rules 5 6# lldb has a separate bug where this test case 7# does not work if we have debug info - after 8# sliding the binary, the address of `first` and 9# `second` are not slid for some reason on Darwin. 10main.o: main.c 11 $(CC) $(CFLAGS_NO_DEBUG) -c $< -o $@ 12 13