
SRC = appointment.c business.c config.c date.c debug.c dfi.c dynamic_io.c \
	errors.c general.c index.c info.c init.c link.c linked.c note.c \
	note_index.c people.c project.c records.c time.c todo.c user.c

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

all:	core

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

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

core:	$(OBJ)

clean:
	rm -f *.o

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