19 lines · plain
1EXE := fat.out2LIPO=lipo3 4include Makefile.rules5 6all: fat.out7 8x86_64.out: x86_64.c9 $(CC) $(ASAN_LDFLAGS) -isysroot $(SDKROOT) -target x86_64-apple-macosx10.9 -o x86_64.out $<10 11x86_64h.out: x86_64h.c12 $(CC) $(ASAN_LDFLAGS) -isysroot $(SDKROOT) -target x86_64h-apple-macosx10.9 -o x86_64h.out $<13 14arm64.out: arm64.c15 $(CC) $(ASAN_LDFLAGS) -isysroot $(SDKROOT) -target arm64-apple-macosx10.9 -o arm64.out $<16 17fat.out: x86_64.out x86_64h.out arm64.out18 $(LIPO) -o fat.out -create $^19