aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
blob: b3324ef667efaa05cd2371a0ca475bcef3979a84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
CFLAGS+=-Wall

PROGS=usernetctl doexec netreport testd usleep

all:	$(PROGS)

clean:
	rm -f $(PROGS)

install:
	mkdir -p $(ROOT)/bin $(ROOT)/usr/sbin $(ROOT)/usr/man/man1
	install -o 0 -g 0 -s -m 755 doexec $(ROOT)/bin/doexec
	install -o 0 -g 0 -s -m 755 usleep $(ROOT)/bin/usleep
	install -o 0 -g 0 -s -m 4755 usernetctl $(ROOT)/usr/sbin/usernetctl
	install -o 0 -g 0 -s -m 2755 netreport $(ROOT)/sbin/netreport
	install -m 644 doexec.1 $(ROOT)/usr/man/man1
	install -m 644 netreport.1 $(ROOT)/usr/man/man1
	install -m 644 usleep.1 $(ROOT)/usr/man/man1
	install -m 644 usernetctl.1 $(ROOT)/usr/man/man1

# this daemon and initscript are useful for testing the up/down/status stuff
# not installed by default, only comes from sources.
install-test:
	install -o 0 -g 0 -s -m 755 testd $(ROOT)/usr/sbin/testd
	install -o 0 -g 0 -m 755 testdinit $(ROOT)/etc/rc.d/init.d/testd