summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2010-07-01 12:58:57 -0700
committerDan Nicholson <dbn.lists@gmail.com>2010-07-01 13:00:02 -0700
commit9c1f95635d1368bb5d832cbf71b571fb2ed16d77 (patch)
tree22a770ff87c320385b1f8b6211c54e38de1b4f1c
parentb1dcf38f796165bd12ceb393b5068d631a921fb4 (diff)
Use GLW_CFLAGS when building libGLw
We check for libX11 and libXt, so we might as well use the CFLAGS pkg-config tells us about.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1fb3d3c..39352f0 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ OBJECTS = $(GLW_SOURCES:.c=.o)
##### RULES #####
.c.o:
- $(CC) -c $(INCDIRS) $(CFLAGS) $<
+ $(CC) -c $(INCDIRS) $(CFLAGS) $(GLW_CFLAGS) $<