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