source: src/compdic_utf8/Makefile

Last change on this file was e7de6cc, checked in by Tomasz Obrebski <to@…>, 12 years ago

new version of dgp
added dgc, tre and compdic components
compiledic renamed to compdic_utf8
./configure updated

  • Property mode set to 100644
File size: 377 bytes
Line 
1include ../../config.mak
2
3all: compdic
4
5.PHONY: compdic
6compiledic:
7
8.PHONY: install
9install:
10ifdef BIN_DIR
11        install -m 0755 compdic $(BIN_DIR)
12        install -m 0755 text2fst.py $(BIN_DIR)
13        install -m 0755 symbols.py $(BIN_DIR)
14endif
15
16.PHONY: uninstall
17uninstall:
18ifdef BIN_DIR
19        rm $(BIN_DIR)/compdic
20        rm $(BIN_DIR)/text2fst.py
21        rm $(BIN_DIR)/symbols.py
22endif
23
24.PHONY: clean
25clean:
Note: See TracBrowser for help on using the repository browser.