9b CC = cc CFLAGS = -Wall -O -fomit-frame-pointer LDFLAGS = -s tst: tst.o $(CC) $(LDFLAGS) $(.ALLSRC) -o $(.TARGET) clean: /bin/rm -f *.o tst . 0