Created Makefile for all projects

This commit is contained in:
Niels Werensteijn 2016-10-11 15:23:29 +02:00
parent 4a11da005b
commit 47f6ebf27f

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
all:
$(MAKE) -C src;
$(MAKE) -C src -f Makefile.xtables;
$(MAKE) -C test;
clean:
$(MAKE) -C src clean;
$(MAKE) -C src -f Makefile.xtables clean;
$(MAKE) -C test clean;
install:
$(MAKE) -C src modules_install;
$(MAKE) -C src -f Makefile.xtables install;