source: lib/Makefile

Last change on this file 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: 368 bytes
Line 
1include ../config.mak
2
3.PHONY: install
4install:
5ifdef LIB_DIR
6        install -m 0755 attr.pm $(LIB_DIR)
7        install -m 0755 seg.rb $(LIB_DIR)
8        install -m 0755 ser.l.template $(LIB_DIR)
9        install -m 0755 terms.m4 $(LIB_DIR)
10endif
11
12.PHONY: uninstall
13uninstall:
14ifdef LIB_DIR
15        rm $(LIB_DIR)/attr.pm
16        rm $(LIB_DIR)/seg.rb
17        rm $(LIB_DIR)/ser.l.template
18        rm $(LIB_DIR)/terms.m4
19endif
Note: See TracBrowser for help on using the repository browser.