
TOPDIR = ../..

include ${TOPDIR}/mak/config.mak

INSTALLFILES	= wss_aout.h wss_arg.h wss_audit.h wss_criteria.h wss_cv.h \
		  wss_db.h wss_debug.h wss_dispatch.h wss_elf.h wss_evspace.h \
		  wss_export.h wss_file.h wss_iface.h wss_init.h wss_library.h \
		  wss_linker.h wss_log.h wss_malloc.h wss_module.h wss_mutex.h \
		  wss_path.h wss_pe.h wss_process.h wss_ref.h wss_strings.h \
		  wss_utilities.h wss_vm.h wss_wrapper.h wss_wrv.h \
		  wss_wrvevent.h

all depend clean:

install:
	@echo "Installing header files"
	@if [ -z "${INSTALLROOT}" ]; then \
	   GSWTKINSTALLBASE=; \
	else \
	   GSWTKINSTALLBASE="${INSTALLROOT}/"; \
	fi; \
	${TOPDIR}/mak/mkdirhier $${GSWTKINSTALLBASE}${INCDIR}/gswtk; \
	for a in ${INSTALLFILES}; do \
	   echo $$a; \
	   ${CP} $$a $${GSWTKINSTALLBASE}${INCDIR}/gswtk; \
	done

