utt/conf/Makefile

47 lines
1.1 KiB
Makefile
Raw Permalink Normal View History

include ../config.mak
.PHONY: all
all: compdic.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} --define=LANGUAGE=${LANGUAGE} $< > $@
.PHONY: clean
clean:
rm *.conf
.PHONY: install
install:
ifdef CONF_DIR
install -m 0644 compdic.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)/compdic.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