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

Revision 795, 354 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 .include <../Makefile.inc>
3
4 DAEMON_DIR=$(SYSTEM_ROOT)/daemon
5
6 build: daemon/ispcp_daemon
7
8 daemon/ispcp_daemon:
9         (cd ./daemon; \
10         $(MAKE) ispcp_daemon;)
11
12 install: build
13         $(SYSTEM_MAKE_DIRS) $(DAEMON_DIR)
14         cp ./daemon/ispcp_daemon $(DAEMON_DIR)
15
16 uninstall:
17
18         (cd ./daemon; \
19         $(MAKE) clean;)
20         rm -rf $(DAEMON_DIR)
21         rm -rf build
22
23 .PHONY: install uninstall
Note: See TracBrowser for help on using the browser.