CFLAGS+=-Wall PROGS=usernetctl doexec netreport testd usleep ipcalc 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 -o 0 -g 0 -s -m 2755 ipcalc $(ROOT)/bin/ipcalc 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 install -m 644 ipcalc.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 ipcalc: ipcalc.o $(CC) $(LDFLAGS) -o $@ $< -lpopt