root/tags/omega-1.0.0-rc3/tools/Makefile

Revision 795, 336 bytes (checked in by raphael, 1 year ago)

Fixed #627: chkrootkit is missing on the package list
Fixed #629: : doesn't exist or can't be read.
Fixed #628: rkhunter during the setup

Line 
1
2 export
3
4 DAEMON_DIR=$(SYSTEM_ROOT)/daemon
5
6
7 build: daemon/ispcp_daemon
8
9 daemon/ispcp_daemon:
10         (cd ./daemon; \
11         $(MAKE) ispcp_daemon;)
12
13 install: build
14         $(SYSTEM_MAKE_DIRS) $(DAEMON_DIR)
15         cp ./daemon/ispcp_daemon $(DAEMON_DIR)
16
17 uninstall:
18
19         (cd ./daemon; \
20         $(MAKE) clean; )
21         rm -rf $(DAEMON_DIR)
22         rm -rf build
23
24 .PHONY: install uninstall
Note: See TracBrowser for help on using the browser.