# You should not have to edit this makefile. CC is passed from
# toplevel Makefile. You should do "make client" in the toplevel dir.

CC = gcc -O

PROGNAME = tkmr
OBJS = child.o tkmr.o

all:	tkmr
	$(CC) -o $(PROGNAME) $(OBJS)

tkmr:	$(OBJS)

tkmr.o:	tkmr.c child.h tkmr.h

clean::
	@rm -f core *.o tkmr *~
