source: src/dgc/Makefile @ 3b02b04

Last change on this file since 3b02b04 was 3b02b04, checked in by Tomasz Obrebski <to@…>, 11 years ago

prawie ca�kiem nowe dgc, du�e zmiany w dgp, pomniejsze poprawki

  • Property mode set to 100644
File size: 241 bytes
Line 
1include ../../config.mak
2
3dgc:
4
5.PHONY: install
6install:
7ifdef BIN_DIR
8        install -m 0755 dgc $(BIN_DIR)
9        install -m 0755 l2src $(BIN_DIR)
10endif
11
12.PHONY: uninstall
13uninstall:
14ifdef BIN_DIR
15        rm $(BIN_DIR)/dgc
16        rm $(BIN_DIR)/l2src
17endif
18
19clean:
Note: See TracBrowser for help on using the repository browser.