Skip to content

Commit

Permalink
add missing mt.exe calls, to include manifest files into exe / dll files
Browse files Browse the repository at this point in the history
svn path=/trunk/; revision=27357
  • Loading branch information
ulflulfl committed Feb 2, 2009
1 parent 7c48128 commit 043532d
Show file tree
Hide file tree
Showing 32 changed files with 105 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packaging/u3/tools/makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ all: utest.exe libgcrypt-11.dll libgpg-error-0.dll
utest.exe: uuid.obj sysdep.obj utest.obj
@echo Linking $@
$(LINK) /OUT:utest.exe $(guiflags) $(LDFLAGS) utest.obj uuid.obj sysdep.obj $(GNUTLS_LIBS) $(guilibsdll)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "utest.exe.manifest" -outputresource:utest.exe;1
!ENDIF

libgcrypt-11.dll libgpg-error-0.dll: $(GNUTLS_DIR)\bin\$@
$(COPY) $(GNUTLS_DIR)\bin\$@ $@
Expand Down
3 changes: 3 additions & 0 deletions packaging/u3/win32/makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ u3util_LIBS= user32.lib shell32.lib
u3util.exe: u3util.obj
@echo Linking $@
$(LINK) /OUT:u3util.exe $(guiflags) $(LDFLAGS) u3util.obj $(u3util_LIBS) $(guilibsdll)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "u3util.exe.manifest" -outputresource:u3util.exe;1
!ENDIF

clean:
cd ../tools
Expand Down
3 changes: 3 additions & 0 deletions plugins/agentx/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/artnet/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/asn1/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/ciscosm/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/docsis/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/easy_codec/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(CODEC_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

easy_codec_plugin.obj : easy_codec_plugin.c
$(CC) $(CFLAGS) -Fd$(PLUGIN_NAME).pdb -c easy_codec_plugin.c
Expand Down
3 changes: 3 additions & 0 deletions plugins/enttec/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/ethercat/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE) $(DISSECTOR_INCLUDES)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
12 changes: 12 additions & 0 deletions plugins/giop/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,30 @@ all : cosnaming.dll coseventcomm.dll tango.dll parlay.dll
cosnaming.dll cosnaming.exp cosnaming.lib : packet-cosnaming.obj $(LINK_PLUGIN_WITH)
link -dll /out:cosnaming.dll $(LDFLAGS) packet-cosnaming.obj $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "cosnaming.dll.manifest" -outputresource:cosnaming.dll;2
!ENDIF

coseventcomm.dll coseventcomm.exp coseventcomm.lib : packet-coseventcomm.obj $(LINK_PLUGIN_WITH)
link -dll /out:coseventcomm.dll $(LDFLAGS) packet-coseventcomm.obj $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "coseventcomm.dll.manifest" -outputresource:coseventcomm.dll;2
!ENDIF

tango.dll tango.exp tango.lib : packet-tango.obj $(LINK_PLUGIN_WITH)
link -dll /out:tango.dll $(LDFLAGS) packet-tango.obj $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "tango.dll.manifest" -outputresource:tango.dll;2
!ENDIF

parlay.dll parlay.exp parlay.lib : packet-parlay.obj $(LINK_PLUGIN_WITH)
link -dll /out:parlay.dll $(LDFLAGS) packet-parlay.obj $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "parlay.dll.manifest" -outputresource:parlay.dll;2
!ENDIF

!ENDIF

Expand Down
3 changes: 3 additions & 0 deletions plugins/gryphon/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/infiniband/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/irda/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/lwres/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/m2m/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/mate/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/opcua/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/opsi/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/pcli/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/profinet/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/rlm/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/rtnet/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/rudp/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/sbus/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/sercosiii/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/stats_tree/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

!ENDIF

Expand Down
3 changes: 3 additions & 0 deletions plugins/tpg/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ OBJECTS=packet-mate.obj\
mate.dll mate.exp mate.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
link -dll /out:mate.dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "mate.dll.manifest" -outputresource:mate.dll;2
!ENDIF

!ENDIF

Expand Down
3 changes: 3 additions & 0 deletions plugins/unistim/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/v5ua/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/wimax/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down
3 changes: 3 additions & 0 deletions plugins/wimaxasncp/Makefile.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ $(PLUGIN_NAME).rc : moduleinfo.nmake
$(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLUGIN_WITH) $(RESOURCE)
link -dll /out:$(PLUGIN_NAME).dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS) $(RESOURCE)
!IF $(MSC_VER_REQUIRED) >= 1400
mt.exe -nologo -manifest "$(PLUGIN_NAME).dll.manifest" -outputresource:$(PLUGIN_NAME).dll;2
!ENDIF

#
# Build plugin.c, which contains the plugin version[] string, a
Expand Down

0 comments on commit 043532d

Please sign in to comment.