# # Makefile for many UNIX compilers using the # "standard" command name CC # CC=CC CFLAGS=-g two: two.c $(CC) $(CFLAGS) -o two two.c clean: rm two