summaryrefslogtreecommitdiff
path: root/jobmon/Makefile
blob: 9fa905022e3aa3922609b4d34dc705c4b9adcec5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# Use EXTRA_FLAGS on the command line for additional options (-g, -static, etc.)
all: netmon
netmon: netmon.c
	$(CC) -Wall $(CFLAGS) $(EXTRA_FLAGS) -o $@ $<
install-netmon: netmon
	install -m 0555 netmon    /usr/sbin/netmon
	install -m 0555 netmon.rc /etc/rc.d/netmon
	@echo "-> Enable netmon service manually with rcctl(8)"
install: install-netmon
clean:
	rm -f netmon