source: src/compiledic/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: 389 bytes
Line 
1include ../../config.mak
2
3all: compiledic
4
5.PHONY: compiledic
6compiledic:
7
8.PHONY: install
9install:
10ifdef BIN_DIR
11        install -m 0755 compiledic $(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)/compiledic
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.