source:
src/rm12/Makefile
Last change on this file was 5f4d9c3, checked in by Maciej Prill <mprill@…>, 13 years ago | |
---|---|
|
|
File size: 188 bytes |
Line | |
---|---|
1 | include ../../config.mak |
2 | rm12: |
3 | |
4 | .PHONY: install |
5 | install: |
6 | ifdef BIN_DIR |
7 | install -m 0755 rm12 $(BIN_DIR) |
8 | endif |
9 | |
10 | .PHONY: uninstall |
11 | uninstall: |
12 | ifdef BIN_DIR |
13 | rm $(BIN_DIR)/rm12 |
14 | endif |
15 | |
16 | clean: |
Note: See TracBrowser
for help on using the repository browser.