# # Makefile for many UNIX compilers using the # "standard" command name CC # CC=CC CFLAGS=-g all: xgets.o xgets2.o xgets.o: xgets.cc @echo "The following does not generate a full program" $(CC) -c $(CFLAGS) xgets.cc xgets2.o: xgets2.cc @echo "The following does not generate a full program" $(CC) -c $(CFLAGS) xgets2.cc clean: rm xgets.o xgets2.o