1C_SOURCES := main.c 2LD_EXTRAS = hidden.o 3 4a.out: hidden.o 5 6hidden.o: hidden.c 7 $(CC) -g0 -c -o $@ $< 8 9include Makefile.rules 10