aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mate
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2008-03-01 12:31:01 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2008-03-01 12:31:01 +0000
commitfcf8509f6910885d050eb86483d1c1d933ffe8a1 (patch)
tree0a984bf0671857bfb7df6496d2aec7f75444956f /plugins/mate
parent08183dae438d1675a32f5972095a9ae222be223f (diff)
Create proper dependancies for plugin.c
svn path=/trunk/; revision=24520
Diffstat (limited to 'plugins/mate')
-rw-r--r--plugins/mate/Makefile.nmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mate/Makefile.nmake b/plugins/mate/Makefile.nmake
index b5fc9a136c..6600cc2070 100644
--- a/plugins/mate/Makefile.nmake
+++ b/plugins/mate/Makefile.nmake
@@ -82,11 +82,12 @@ $(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLU
# a plugin.c file for a plugin.
# All subsequent arguments are the files to scan.
#
-plugin.c: $(DISSECTOR_SRC) ../../tools/make-dissector-reg.py ../../tools/make-dissector-reg
!IFDEF PYTHON
+plugin.c: $(DISSECTOR_SRC) moduleinfo.h ../../tools/make-dissector-reg.py
@echo Making plugin.c (using python)
@$(PYTHON) "../../tools/make-dissector-reg.py" . plugin $(DISSECTOR_SRC)
!ELSE
+plugin.c: $(DISSECTOR_SRC) moduleinfo.h ../../tools/make-dissector-reg
@echo Making plugin.c (using sh)
@$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
!ENDIF