aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/rtnet
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-11-06 09:05:14 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-11-06 09:05:14 +0000
commit327bbd92ffd99f04d68647726fa8c422988307b8 (patch)
treec98a807471edc11ba31f4304b90cab2f61b0dba0 /plugins/rtnet
parent8b74005c3d7ea95a64f0e2fc903ba3c4ec024ed4 (diff)
Use "$(OBJECTS)" whenever a complete list of .obj files appears, rather
than repeating the list from the setting of OBJECTS. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8893 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins/rtnet')
-rw-r--r--plugins/rtnet/Makefile.nmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/rtnet/Makefile.nmake b/plugins/rtnet/Makefile.nmake
index ee6a518490..2440e43f7e 100644
--- a/plugins/rtnet/Makefile.nmake
+++ b/plugins/rtnet/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.5 2003/10/10 21:31:52 guy Exp $
+# $Id: Makefile.nmake,v 1.6 2003/11/06 09:05:14 guy Exp $
#
include ..\..\config.nmake
@@ -11,8 +11,8 @@ CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GLIB_CFLAGS) \
OBJECTS=packet-rtnet.obj
-rtnet.dll rtnet.exp rtnet.lib : packet-rtnet.obj ..\plugin_api.obj
- link -dll /out:rtnet.dll packet-rtnet.obj ..\plugin_api.obj \
+rtnet.dll rtnet.exp rtnet.lib : $(OBJECTS) ..\plugin_api.obj
+ link -dll /out:rtnet.dll $(OBJECTS) ..\plugin_api.obj \
$(GLIB_LIBS)
clean: