source: conf/Makefile @ 5f4d9c3

Last change on this file since 5f4d9c3 was 5f4d9c3, checked in by Maciej Prill <mprill@…>, 12 years ago

Rewritten the build system, added lem UTF-8 version.

  • Property mode set to 100644
File size: 890 bytes
Line 
1include ../config.mak
2
3.PHONY: install
4install:
5ifdef CONF_DIR
6        install -m 0644 compiledic.conf $(CONF_DIR)
7        install -m 0644 cor.conf $(CONF_DIR)
8        install -m 0644 dgc.conf $(CONF_DIR)
9        install -m 0644 dgp.conf $(CONF_DIR)
10        install -m 0644 gph.conf $(CONF_DIR)
11        install -m 0644 grp.conf $(CONF_DIR)
12        install -m 0644 gue.conf $(CONF_DIR)
13        install -m 0644 kor.conf $(CONF_DIR)
14        install -m 0644 lem.conf $(CONF_DIR)
15        install -m 0644 mar.conf $(CONF_DIR)
16        install -m 0644 ser.conf $(CONF_DIR)
17        install -m 0644 utt.conf $(CONF_DIR)
18endif
19
20.PHONY: uninstall
21uninstall:
22ifdef CONF_DIR
23        rm $(CONF_DIR)/compiledic.conf
24        rm $(CONF_DIR)/cor.conf
25        rm $(CONF_DIR)/dgc.conf
26        rm $(CONF_DIR)/dgp.conf
27        rm $(CONF_DIR)/gph.conf
28        rm $(CONF_DIR)/grp.conf
29        rm $(CONF_DIR)/gue.conf
30        rm $(CONF_DIR)/kor.conf
31        rm $(CONF_DIR)/lem.conf
32        rm $(CONF_DIR)/mar.conf
33        rm $(CONF_DIR)/ser.conf
34        rm $(CONF_DIR)/utt.conf
35endif
Note: See TracBrowser for help on using the repository browser.