1OBJC_SOURCES := myclass.m repro.m 2LD_EXTRAS := -framework Foundation 3 4include Makefile.rules 5 6# Force myclass.m to be compiled without debug info 7myclass.o: CFLAGS = $(CFLAGS_NO_DEBUG) 8 9