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