source:
src/compdic_utf8/Makefile
@
abd28d1
Last change on this file since abd28d1 was e7de6cc, checked in by Tomasz Obrebski <to@…>, 13 years ago | |
---|---|
|
|
File size: 377 bytes |
Line | |
---|---|
1 | include ../../config.mak |
2 | |
3 | all: compdic |
4 | |
5 | .PHONY: compdic |
6 | compiledic: |
7 | |
8 | .PHONY: install |
9 | install: |
10 | ifdef 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) |
14 | endif |
15 | |
16 | .PHONY: uninstall |
17 | uninstall: |
18 | ifdef BIN_DIR |
19 | rm $(BIN_DIR)/compdic |
20 | rm $(BIN_DIR)/text2fst.py |
21 | rm $(BIN_DIR)/symbols.py |
22 | endif |
23 | |
24 | .PHONY: clean |
25 | clean: |
Note: See TracBrowser
for help on using the repository browser.