aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2006-04-23 02:14:11 +0000
committerGuy Harris <guy@alum.mit.edu>2006-04-23 02:14:11 +0000
commitc0ab4fac46af415c52f0f617f9167c1085f584cd (patch)
tree8cd0b649d5b6bf3e7611d9670d1fc7c12655428d
parent9f05b7368f15112fd32e64c09ebb5424b21ab283 (diff)
Add the objects built from DISSECTOR_SUPPORT_SRC.
svn path=/trunk/; revision=17963
-rw-r--r--plugins/h223/Makefile.nmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/h223/Makefile.nmake b/plugins/h223/Makefile.nmake
index c3099ad192..4644cc9830 100644
--- a/plugins/h223/Makefile.nmake
+++ b/plugins/h223/Makefile.nmake
@@ -21,7 +21,9 @@ CFLAGS=/DHAVE_WIN32_LIBETHEREAL_LIB /D_NEED_VAR_IMPORT_ $(CFLAGS)
DISSECTOR_OBJECTS = $(DISSECTOR_SRC:.c=.obj)
-OBJECTS=$(DISSECTOR_OBJECTS) plugin.obj
+DISSECTOR_SUPPORT_OBJECTS = $(DISSECTOR_SUPPORT_SRC:.c=.obj)
+
+OBJECTS = $(DISSECTOR_OBJECTS) $(DISSECTOR_SUPPORT_OBJECTS) plugin.obj
h223.dll h223.exp h223.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
link -dll /out:h223.dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \