xref: /llvm-project/lldb/test/API/functionalities/multiple-slides/Makefile (revision 1fee25629d9d3f33cc618cb2b61cdf3823bfd092)
1*1fee2562SJason MolendaC_SOURCES := main.c
2*1fee2562SJason MolendaMAKE_DSYM := NO
3*1fee2562SJason Molenda
4*1fee2562SJason Molendainclude Makefile.rules
5*1fee2562SJason Molenda
6*1fee2562SJason Molenda# lldb has a separate bug where this test case
7*1fee2562SJason Molenda# does not work if we have debug info - after
8*1fee2562SJason Molenda# sliding the binary, the address of `first` and
9*1fee2562SJason Molenda# `second` are not slid for some reason on Darwin.
10*1fee2562SJason Molendamain.o: main.c
11*1fee2562SJason Molenda	$(CC) $(CFLAGS_NO_DEBUG) -c $< -o $@
12*1fee2562SJason Molenda
13