include ../Make.config

PROG		= includes
HEADERS		= aimtypes.h dbcodes.h dbserver.h liblincks.h lincks.h \
		  monitor.h parser.h sunlincks.h systypes.h xconfig.h \
		  libshared.h config.h machine.h machine.h.in

all:	$(PROG)

install:
	@ for i in $(HEADERS) ;\
	do \
	if [ ! -d $(INCDIR) ] ; then \
		echo "Making directory $(INCDIR)"; \
		$(MKDIRHIER) $(INCDIR); \
		chmod 755 $(INCDIR); \
	fi; \
	echo installing $$i in $(INCDIR) ; \
	$(INSTALL) $(INCINSTALLFLAGS) $$i $(INCDIR) ; \
	done

$(PROG):
	@ echo "nothing to make"

clean:
	/bin/rm -f *~
depend:
	@ echo "nothing to depend"

current:
	ln -s $(SCCSHOME) SCCS
	sccs get $(HEADERS)
	/bin/rm SCCS
