From cbfc93b82edd6dec6b189c0adeb03569771b5d83 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Thu, 6 Nov 2003 09:05:14 +0000 Subject: Use "$(OBJECTS)" whenever a complete list of .obj files appears, rather than repeating the list from the setting of OBJECTS. svn path=/trunk/; revision=8893 --- plugins/rtnet/Makefile.nmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/rtnet/Makefile.nmake') 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: -- cgit v1.2.3