1C_SOURCES = main.c 2 3include Makefile.rules 4 5all: a.out.dSYM hide.app/Contents/a.out.dSYM 6 7hide.app/Contents/a.out.dSYM: 8 mkdir hide.app 9 mkdir hide.app/Contents 10 mv a.out.dSYM hide.app/Contents 11 strip -x a.out 12ifneq "$(CODESIGN)" "" 13 $(CODESIGN) -fs - a.out 14endif 15