Index: plugins/xyz/Makefile.nmake =================================================================== --- plugins/xyz/Makefile.nmake (your copy) +++ plugins/xyz/Makefile.nmake (my copy) DISSECTOR_SUPPORT_OBJECTS = $(DISSECTOR_SUPPORT_SRC:.c=.obj) -OBJECTS = $(DISSECTOR_OBJECTS) $(DISSECTOR_SUPPORT_OBJECTS) plugin.obj +DISSECTOR_COMMON_OBJECTS = ..\common\support_file.obj +OBJECTS = $(DISSECTOR_OBJECTS) $(DISSECTOR_SUPPORT_OBJECTS) plugin.obj \ + $(DISSECTOR_COMMON_OBJECTS) + RESOURCE=$(PLUGIN_NAME).res all: $(PLUGIN_NAME).dll Index: plugins/Makefile.nmake =================================================================== --- plugins/Makefile.nmake (revision 32589) +++ plugins/Makefile.nmake (working copy) @@ -7,6 +7,7 @@ ## To add a plugin: Add entry to PLUGIN_LIST PLUGIN_LIST = \ + common \ asn1 \ docsis \ ethercat \