aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/unistim
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2012-06-01 14:08:12 +0000
committerBill Meier <wmeier@newsguy.com>2012-06-01 14:08:12 +0000
commit1caa79ad80dc81ea25231193c6e9143bd5d1e4d8 (patch)
treeea42a76177ffed204112296a8db7a7d23c160dd0 /plugins/unistim
parent6e3d56f039216ce634878b11d71a6128080ca373 (diff)
Windows: Set Makefile.common as a plugin.c dependency so plugin.c is rebuilt if Makefile.common is changed
ToDo: ditto for Makefile.am ? svn path=/trunk/; revision=42971
Diffstat (limited to 'plugins/unistim')
-rw-r--r--plugins/unistim/Makefile.nmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/unistim/Makefile.nmake b/plugins/unistim/Makefile.nmake
index b415b1e7a1..fecc441c15 100644
--- a/plugins/unistim/Makefile.nmake
+++ b/plugins/unistim/Makefile.nmake
@@ -80,11 +80,11 @@ $(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLU
# All subsequent arguments are the files to scan.
#
!IFDEF PYTHON
-plugin.c: $(DISSECTOR_SRC) moduleinfo.h ../../tools/make-dissector-reg.py
+plugin.c: $(DISSECTOR_SRC) moduleinfo.h Makefile.common ../../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
+plugin.c: $(DISSECTOR_SRC) moduleinfo.h Makefile.common ../../tools/make-dissector-reg
@echo Making plugin.c (using sh)
@$(SH) ../../tools/make-dissector-reg . plugin $(DISSECTOR_SRC)
!ENDIF