CUR_REL_PATH := "iris/include"

include ../../config.mk

INST_INCLUDES = output.h 


all      \
depend   \
test	\
clean:

install: $(IRIS_INCLUDE)
	install -m 0664 -o $(IRIS_USER) -g $(IRIS_GROUP) $(INST_INCLUDES) $(IRIS_INCLUDE)

uninstall:
	if [ -d $(IRIS_INCLUDE) ]; then \
		cd $(IRIS_INCLUDE) && rm -f $(INST_INCLUDES); fi
