aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/rtnet
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-06-14 20:45:29 +0000
committerGuy Harris <guy@alum.mit.edu>2003-06-14 20:45:29 +0000
commit8178db498052bef672bae1abfdf6ab001c4eae45 (patch)
treecd4e2a516fff203443003c671b6f33d32568151e /plugins/rtnet
parent71424053cd5e62f8f94bdb81af98e7ee2830fc46 (diff)
Define GLIB_LIBS and GTK_LIBS variables in config.nmake (based on
variables the user configures - the user isn't expected to change GLIB_LIBS or GTK_LIBS, and there's a comment nothing that users shouldn't have to do so), which contain the appropriate libraries for building stuff that requires only GLib, and stuff that required GTK+ and GLib, respectively, and use those macros in the Makefile.nmake files. svn path=/trunk/; revision=7885
Diffstat (limited to 'plugins/rtnet')
-rw-r--r--plugins/rtnet/Makefile.nmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/rtnet/Makefile.nmake b/plugins/rtnet/Makefile.nmake
index 345aa0ac36..4f3975e1f0 100644
--- a/plugins/rtnet/Makefile.nmake
+++ b/plugins/rtnet/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.3 2003/06/14 20:36:04 guy Exp $
+# $Id: Makefile.nmake,v 1.4 2003/06/14 20:45:29 guy Exp $
#
include ..\..\config.nmake
@@ -13,7 +13,7 @@ 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 \
- $(GLIB_DIR)\glib-$(GLIB_VERSION).lib
+ $(GLIB_LIBS)
clean:
rm -f $(OBJECTS) rtnet.dll rtnet.exp rtnet.lib $(PDB_FILE)