aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/asn1
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-11-06 09:05:14 +0000
committerGuy Harris <guy@alum.mit.edu>2003-11-06 09:05:14 +0000
commitcbfc93b82edd6dec6b189c0adeb03569771b5d83 (patch)
treec98a807471edc11ba31f4304b90cab2f61b0dba0 /plugins/asn1
parentfbbcf9f9e6a2aacd3f457c58c0ea8bc95b1b578a (diff)
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
Diffstat (limited to 'plugins/asn1')
-rw-r--r--plugins/asn1/Makefile.nmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/asn1/Makefile.nmake b/plugins/asn1/Makefile.nmake
index 649add09bf..091bc46d01 100644
--- a/plugins/asn1/Makefile.nmake
+++ b/plugins/asn1/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.3 2003/10/28 20:44:51 guy Exp $
+# $Id: Makefile.nmake,v 1.4 2003/11/06 09:05:11 guy Exp $
#
include ..\..\config.nmake
@@ -11,8 +11,8 @@ CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GTK_CFLAGS) \
OBJECTS=packet-asn1.obj
-asn1.dll asn1.exp asn1.lib : packet-asn1.obj ..\plugin_api.obj
- link -dll /out:asn1.dll packet-asn1.obj ..\plugin_api.obj \
+asn1.dll asn1.exp asn1.lib : $(OBJECTS) ..\plugin_api.obj
+ link -dll /out:asn1.dll $(OBJECTS) ..\plugin_api.obj \
$(GTK_LIBS)
clean: