
TOPDIR = ../../..

include ${TOPDIR}/mak/config.mak

INSTALLFILES	= wsi_db.h wsi_debug.h wsi_dir.h wsi_endian.h wsi_errno.h \
		  wsi_execve.h wsi_file.h wsi_fileutil.h wsi_iface.h \
		  wsi_init.h wsi_log.h wsi_malloc.h wsi_module.h wsi_os.h \
		  wsi_path.h wsi_process.h wsi_rw.h wsi_stdlib.h \
		  wsi_syscalls.h wsi_time.h wsi_types.h wsi_utilities.h \
		  wsi_vm.h wsi_wrapper.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

