CC = gcc -Wall TARG = key_test all: $(TARG) key_test: key_test.o key.o $(CC) -o $@ key_test.o key.o clean: rm -f $(TARG) *.o *~ # EOF