# makefile for chord program # 18 Apr 97 Erich Rickheit KSC Created EXE = ch CFLAGS = -g COBJ = ch.o ch: $(COBJ) $(CC) -o ch $(COBJ) all: $(EXE)