Files
nethogs/Makefile
Arnout Engelen 240307d1fe Introduce 'test' target, add /proc/net/tcp parsing to it
The test itself doesn't do much yet, but might shed some light on what's going
on in https://github.com/raboof/nethogs/issues/22
2016-03-27 21:35:35 +02:00

42 lines
696 B
Makefile

export VERSION := 0
export SUBVERSION := 8
export MINORVERSION := 2-SNAPSHOT
all: nethogs decpcap_test test
$(MAKE) -f MakeApp.mk $@
$(MAKE) -f MakeLib.mk $@
.PHONY:
tgz: clean
cd .. ; tar czvf nethogs-$(VERSION).$(SUBVERSION).$(MINORVERSION).tar.gz --exclude-vcs nethogs/*
check:
$(MAKE) -f MakeApp.mk $@
install:
$(MAKE) -f MakeApp.mk $@
$(MAKE) -f MakeLib.mk $@
install_dev:
$(MAKE) -f MakeLib.mk $@
uninstall:
$(MAKE) -f MakeApp.mk $@
$(MAKE) -f MakeLib.mk $@
nethogs:
$(MAKE) -f MakeApp.mk $@
decpcap_test:
$(MAKE) -f MakeApp.mk $@
test:
$(MAKE) -f MakeApp.mk $@
clean:
$(MAKE) -f MakeApp.mk $@
$(MAKE) -f MakeLib.mk $@
format:
clang-format -i *.c *.cpp *.h