Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / macosx / universal64 / Makefile
blobbfbfc3d67c06a9731097516aefa5d3d3f805b54f
1 EXE := fat.out
3 ifdef FAT64_DSYM
4 DSFLAGS_EXTRAS=-fat64
5 endif
7 include Makefile.rules
9 all: fat.out
11 fat.out: fat.x86_64h.out fat.x86_64.out
12 lipo -fat64 -create -o $@ $^
14 fat.x86_64.out: fat.x86_64.o
15 $(CC) -isysroot $(SDKROOT) -target x86_64-apple-macosx10.9 -o $@ $<
17 fat.x86_64h.out: fat.x86_64h.o
18 $(CC) -isysroot $(SDKROOT) -target x86_64h-apple-macosx10.9 -o $@ $<
20 fat.x86_64.o: main.c
21 $(CC) -isysroot $(SDKROOT) -g -O0 -target x86_64-apple-macosx10.9 -c -o $@ $<
23 fat.x86_64h.o: main.c
24 $(CC) -isysroot $(SDKROOT) -g -O0 -target x86_64h-apple-macosx10.9 -c -o $@ $<