diff options
Diffstat (limited to 'wlp/Makefile')
-rw-r--r-- | wlp/Makefile | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/wlp/Makefile b/wlp/Makefile deleted file mode 100644 index 7480b47..0000000 --- a/wlp/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -MODULEDIR=module -CSRCDIR=C -BINDIR=.. - -# modules name without $(MODULEDIR) -SOLIST=test.so - - - -all: bin - -bin: initmodule wlp makemodule - chmod 0644 $(MODULEDIR)/*.so - mv $(MODULEDIR)/*.so $(BINDIR) - -# Init Makefile & Co. file for building python module -initmodule: - $(MAKE) -C $(MODULEDIR) -f Makefile.pre.in boot - -# The White List Parser Module -wlp: - $(MAKE) -C $(CSRCDIR) archive - -# Really make python module as .so -makemodule: - $(MAKE) -C $(MODULEDIR) - - - -clean: cleanmodule cleansrc - rm -f $(BINDIR)/*.so - -cleansrc: - $(MAKE) -C $(CSRCDIR) clean - -cleanmodule: - @if test -f $(MODULEDIR)/Makefile; then $(MAKE) -C $(MODULEDIR) clean ;fi - rm -f $(MODULEDIR)/Makefile.pre $(MODULEDIR)/Makefile - rm -f $(MODULEDIR)/config.c - rm -f $(MODULEDIR)/sedscript - rm -f $(MODULEDIR)/Setup - |