
SRC = aer.c appointment.c business.c config.c general.c input.c interface.c \
	note.c output.c people.c project.c todo.c

CC = gcc
OPTIMIZE = -g -gstabs+
CFLAGS = $(OPTIMIZE) -Wall -pipe

all:	pinfoman
.c.o:
	$(CC) $(CFLAGS) -c $<

OBJ = $(SRC:.c=.o)

pinfoman: $(OBJ)

clean:
	rm -f *.o

cleaner:
	rm -f *.o *.c~
