aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/gryphon
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-06-14 20:45:29 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-06-14 20:45:29 +0000
commit50497a35c15dc37d8867bf5d523af6e08d041e40 (patch)
treecd4e2a516fff203443003c671b6f33d32568151e /plugins/gryphon
parent632c0320a946eb80f60e2e6480bcc5fa87907b97 (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7885 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins/gryphon')
-rw-r--r--plugins/gryphon/Makefile.nmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gryphon/Makefile.nmake b/plugins/gryphon/Makefile.nmake
index 328650bd5d..dffad3eca1 100644
--- a/plugins/gryphon/Makefile.nmake
+++ b/plugins/gryphon/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.10 2003/06/14 20:36:01 guy Exp $
+# $Id: Makefile.nmake,v 1.11 2003/06/14 20:45:25 guy Exp $
#
include ..\..\config.nmake
@@ -13,7 +13,7 @@ OBJECTS=packet-gryphon.obj
gryphon.dll gryphon.exp gryphon.lib : packet-gryphon.obj ..\plugin_api.obj
link -dll /out:gryphon.dll packet-gryphon.obj ..\plugin_api.obj \
- $(GLIB_DIR)\glib-$(GLIB_VERSION).lib
+ $(GLIB_LIBS)
clean:
rm -f $(OBJECTS) gryphon.dll gryphon.exp gryphon.lib $(PDB_FILE)