summaryrefslogtreecommitdiff
path: root/plugins/Custom.nmake.example
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Custom.nmake.example')
-rw-r--r--plugins/Custom.nmake.example30
1 files changed, 0 insertions, 30 deletions
diff --git a/plugins/Custom.nmake.example b/plugins/Custom.nmake.example
deleted file mode 100644
index cd97bc46da..0000000000
--- a/plugins/Custom.nmake.example
+++ /dev/null
@@ -1,30 +0,0 @@
-#
-
-include ..\config.nmake
-
-all: foo
-
-foo::
- cd foo
- $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
- cd ..
-
-clean:
- cd foo
- $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
- cd ..
-
-distclean: clean
- cd foo
- $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
- cd ..
-
-maintainer-clean: distclean
- cd foo
- $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
- cd ..
-
-install-plugins:
-!IFDEF ENABLE_LIBWIRESHARK
- xcopy foo\*.dll ..\$(INSTALL_DIR)\plugins\ /d
-!ENDIF