source: src/tags/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: 265 bytes
Line 
1include ../../config.mak
2
3all:
4
5.PHONY: install
6install:
7ifdef BIN_DIR
8        install -m 0755 ipi.tag2re $(BIN_DIR)
9        install -m 0755 uam.tag2re $(BIN_DIR)
10endif
11
12.PHONY: uninstall
13uninstall:
14ifdef BIN_DIR
15        rm $(BIN_DIR)/ipi.tag2re
16        rm $(BIN_DIR)/uam.tag2re
17endif
18
19clean:
Note: See TracBrowser for help on using the repository browser.