aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-08-19 02:16:26 +0000
committerGuy Harris <guy@alum.mit.edu>2003-08-19 02:16:26 +0000
commit6f4508de8c7600da422bb1ab47eed35113259536 (patch)
tree7b1304dec03bb6f3edfe2f7abf4945d64b1f0b81 /plugins/Makefile.nmake
parentb24a5b39af483e4e36234ed293d018370d30cbd7 (diff)
Define GCC_GLIB_CFLAGS as a GCC equivalent of GLIB_CFLAGS, and use it
instead of -I$(GLIB_DIR) when running GCC to generate the xyzzy file, so that the right -I flags are used. svn path=/trunk/; revision=8190
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r--plugins/Makefile.nmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index 48ee950813..722a338c66 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.23 2003/08/18 20:17:55 guy Exp $
+# $Id: Makefile.nmake,v 1.24 2003/08/19 02:16:26 guy Exp $
#
include ..\config.nmake
@@ -21,7 +21,7 @@ Xplugin_api.c: plugin_gen.py plugin_api_list.c
plugin_api.obj: plugin_api.c Xplugin_api.c
xyzzy: plugin_gen.py plugin_api_list.c
- gcc -aux-info xyzzy -DHAVE_CONFIG_H -I$(GLIB_DIR) -I.. -c plugin_api_list.c
+ gcc -aux-info xyzzy -DHAVE_CONFIG_H $(GCC_GLIB_CFLAGS) -I.. -c plugin_api_list.c
$(PYTHON) plugin_gen.py xyzzy
artnet::