CUR_REL_PATH := libs/keys

include ../../config.mk

KEYS := $(shell cat keys.lst)

all:

depend:

install: ${IRIS_KEYS}
	@$(foreach key,$(KEYS),touch ${IRIS_KEYS}/$(key); \
	chown ${IRIS_USER}:${IRIS_GROUP} ${IRIS_KEYS}/$(key); \
	chmod 0664 ${IRIS_KEYS}/$(key);)

uninstall:
	@$(foreach key,$(KEYS),rm -f ${IRIS_KEYS}/$(key);)

clean: cleanexe
	rm -f *.bak *~

cleanexe:

install_src: ${INST_SRC_DIR}
	install -m 0664 -o ${IRIS_USER} -g ${IRIS_GROUP} Makefile *.lst ${INST_SRC_DIR}

uninstall_src:
	rm -rf ${INST_SRC_DIR}

