utt/conf/Makefile
2012-02-09 20:34:02 +01:00

47 lines
1.1 KiB
Makefile

include ../config.mak
.PHONY: all
all: compiledic.conf cor.conf dgc.conf dgp.conf gph.conf grp.conf gue.conf kor.conf lem.conf mar.conf ser.conf utt.conf
%.conf: %.conf.m4
m4 --define=LANG_DIR=${LANG_DIR} --define=LIB_DIR=${LIB_DIR} $< > $@
.PHONY: clean
clean:
rm *.conf
.PHONY: install
install:
ifdef CONF_DIR
install -m 0644 compiledic.conf $(CONF_DIR)
install -m 0644 cor.conf $(CONF_DIR)
install -m 0644 dgc.conf $(CONF_DIR)
install -m 0644 dgp.conf $(CONF_DIR)
install -m 0644 gph.conf $(CONF_DIR)
install -m 0644 grp.conf $(CONF_DIR)
install -m 0644 gue.conf $(CONF_DIR)
install -m 0644 kor.conf $(CONF_DIR)
install -m 0644 lem.conf $(CONF_DIR)
install -m 0644 mar.conf $(CONF_DIR)
install -m 0644 ser.conf $(CONF_DIR)
install -m 0644 utt.conf $(CONF_DIR)
endif
.PHONY: uninstall
uninstall:
ifdef CONF_DIR
rm $(CONF_DIR)/compiledic.conf
rm $(CONF_DIR)/cor.conf
rm $(CONF_DIR)/dgc.conf
rm $(CONF_DIR)/dgp.conf
rm $(CONF_DIR)/gph.conf
rm $(CONF_DIR)/grp.conf
rm $(CONF_DIR)/gue.conf
rm $(CONF_DIR)/kor.conf
rm $(CONF_DIR)/lem.conf
rm $(CONF_DIR)/mar.conf
rm $(CONF_DIR)/ser.conf
rm $(CONF_DIR)/utt.conf
endif