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