#
# Makefile for Include
#
# $Id: Makefile,v 1.8 2004/10/29 23:53:13 graziano Exp $
#

# include common variables
include ../Makedefs

# headers to be installed 
HEADERS =	$(buildincdir)/diagnostic.h \
		$(buildincdir)/dnsutil.h \
		$(buildincdir)/formatutil.h \
		$(buildincdir)/messages.h \
		$(buildincdir)/osutil.h \
		$(buildincdir)/protocol.h \
		$(buildincdir)/config_portability.h \
		$(buildincdir)/strutil.h \
		$(buildincdir)/timeouts.h


.PHONY: all clean dist install common
all: $(HEADERS)

$(buildincdir)/%.h : %.h
	$(CP) $< $(buildincdir)

clean:

dist:
	@$(INSTALL) -d $(DIST_ROOT)/Include
	@$(CP) Makefile *.h.in *.h $(DIST_ROOT)/Include

install:
	@echo "Installing header files..."
	@$(CP) $(HEADERS) $(incdir)

