include ../Makefile.vars

HEADERS = DwmPfDevice.hh \
	  DwmPfRule.hh \
	  DwmPfTable.hh
ifeq ("${OSNAME}", "darwin")
HEADERS += macos_libkern_tree.h
HEADERS += macos_net_pfvar.h
endif
TARPREPHEADERS  = $(HEADERS:%=${TARDIR}/include/libDwmPf/%)

all::
	@echo "Nothing to be done for 'all'"

tarprep: ${TARPREPHEADERS}

${TARDIR}/include/libDwmPf/%.hh: %.hh
	../install-sh -c -m 444 $< $@

${TARDIR}/include/libDwmPf/%.h: %.h
	../install-sh -c -m 444 $< $@

clean: clean-tarprep

clean-tarprep::
	rm -f ${TARPREPHEADERS}
