f-stack/tools/Makefile

8 lines
237 B
Makefile
Raw Normal View History

2018-08-16 15:29:12 +03:00
SUBDIRS=compat libutil libmemstat libxo libnetgraph sysctl ifconfig route top netstat ngctl ipfw arp traffic
all:
for d in $(SUBDIRS); do ( cd $$d; $(MAKE) all ) ; done
clean:
for d in $(SUBDIRS); do ( cd $$d; $(MAKE) clean ) ; done