2012-02-07 15:37:11 +01:00
|
|
|
include ../config.mak
|
|
|
|
|
2012-02-09 20:34:02 +01:00
|
|
|
.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
|
|
|
|
|
2012-02-07 15:37:11 +01:00
|
|
|
.PHONY: install
|
|
|
|
install:
|
|
|
|
ifdef CONF_DIR
|
2012-02-22 20:37:52 +01:00
|
|
|
install -m 0644 compdic.conf $(CONF_DIR)
|
2012-02-07 15:37:11 +01:00
|
|
|
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
|
2012-02-22 20:37:52 +01:00
|
|
|
rm $(CONF_DIR)/compdic.conf
|
2012-02-07 15:37:11 +01:00
|
|
|
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
|