CC = cc CFLAGS = -O2 LDFLAGS = -s PROG = tzshow tzshow: tzshow.o $(CC) $(LDFLAGS) -o $(PROG) $< clean: /bin/rm -f *.o $(PROG) .