#Buildfile for makedep

INSTALLDIR = /usr/local/bin

#include ../../buildprefix

OBJS = makedep.o gen.o getincl.o print.o list.o

CFLAGS = -O

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

makedep: $(OBJS)
	cc -o makedep $(OBJS)

#include dependencies

install:
	cp makedep $(INSTALLDIR)

clean:
	rm -f *BAK *CKP *.o makedep
cleanbak:
	rm -f *BAK *CKP


