brintos

brintos / llvm-project-archived public Read only

0
0
Text · 266 B · a0f3424 Raw
14 lines · plain
1OBJCXX_SOURCES := main.mm2EXE := a.out3MAKE_DSYM := NO4LD_EXTRAS = -dynamiclib -image_base 0x8000 -framework Foundation5CFLAGS = $(CFLAGS_NO_DEBUG)6 7include Makefile.rules8 9all: a.out a.out-stripped10 11a.out-stripped:12	cp a.out a.out-stripped13	strip -N a.out-stripped14