Browse Source

Created Makefile for all projects

pull/1/head
Niels Werensteijn 8 years ago
parent
commit
47f6ebf27f
  1. 14
      Makefile

14
Makefile

@ -0,0 +1,14 @@ @@ -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;
Loading…
Cancel
Save