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

# include common variables
include ../Makedefs

HEADERS =	$(buildincdir)/nws_api.h 

.PHONY: all clean dist install

# skills.h is needed to access the low-level sensors stuff
all: $(HEADERS) $(buildincdir)/skills.h

clean:

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

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

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

