diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-11-06 09:05:14 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-11-06 09:05:14 +0000 |
commit | cbfc93b82edd6dec6b189c0adeb03569771b5d83 (patch) | |
tree | c98a807471edc11ba31f4304b90cab2f61b0dba0 /plugins/mgcp | |
parent | fbbcf9f9e6a2aacd3f457c58c0ea8bc95b1b578a (diff) | |
download | wireshark-cbfc93b82edd6dec6b189c0adeb03569771b5d83.tar.gz wireshark-cbfc93b82edd6dec6b189c0adeb03569771b5d83.tar.bz2 wireshark-cbfc93b82edd6dec6b189c0adeb03569771b5d83.zip |
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/mgcp')
-rw-r--r-- | plugins/mgcp/Makefile.nmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mgcp/Makefile.nmake b/plugins/mgcp/Makefile.nmake index 16687e653a..def2123ad3 100644 --- a/plugins/mgcp/Makefile.nmake +++ b/plugins/mgcp/Makefile.nmake @@ -1,5 +1,5 @@ # -# $Id: Makefile.nmake,v 1.8 2003/10/10 21:31:51 guy Exp $ +# $Id: Makefile.nmake,v 1.9 2003/11/06 09:05:13 guy Exp $ # include ..\..\config.nmake @@ -11,8 +11,8 @@ CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GLIB_CFLAGS) \ OBJECTS=packet-mgcp.obj -mgcp.dll mgcp.exp mgcp.lib : packet-mgcp.obj ..\plugin_api.obj - link -dll /out:mgcp.dll packet-mgcp.obj ..\plugin_api.obj \ +mgcp.dll mgcp.exp mgcp.lib : $(OBJECTS) ..\plugin_api.obj + link -dll /out:mgcp.dll $(OBJECTS) ..\plugin_api.obj \ $(GLIB_LIBS) clean: |