1OBJC_SOURCES := main.m 2LD_EXTRAS := -lobjc -framework Foundation 3 4all: a.out.stripped 5 6include Makefile.rules 7 8a.out.stripped: a.out.dSYM 9 strip -o a.out.stripped a.out 10ifneq "$(CODESIGN)" "" 11 $(CODESIGN) -fs - a.out.stripped 12endif 13
1OBJC_SOURCES := main.m 2LD_EXTRAS := -lobjc -framework Foundation 3 4all: a.out.stripped 5 6include Makefile.rules 7 8a.out.stripped: a.out.dSYM 9 strip -o a.out.stripped a.out 10ifneq "$(CODESIGN)" "" 11 $(CODESIGN) -fs - a.out.stripped 12endif 13