Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / macosx / posix_spawn / Makefile
blob7ae46ca95828ddb4816615bdab766272019f866d
1 EXE := fat.out
2 LIPO=lipo
4 include Makefile.rules
6 all: fat.out
8 x86_64.out: x86_64.c
9 $(CC) -isysroot $(SDKROOT) -target x86_64-apple-macosx10.9 -o x86_64.out $<
11 x86_64h.out: x86_64h.c
12 $(CC) -isysroot $(SDKROOT) -target x86_64h-apple-macosx10.9 -o x86_64h.out $<
14 arm64.out: arm64.c
15 $(CC) -isysroot $(SDKROOT) -target arm64-apple-macosx10.9 -o arm64.out $<
17 fat.out: x86_64.out x86_64h.out arm64.out
18 $(LIPO) -o fat.out -create $^