aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Jed Brown <jed@59A2.org>2009-11-20 16:58:15 +0100
committerGravatar Carl Worth <cworth@cworth.org>2009-11-21 01:17:31 +0100
commit49132ebc765f355b97671ef253c13d7af9f037a2 (patch)
tree66f721f47230e14a8648a6445d24f5202d74785c /Makefile
parente94bd8506bd44e4d6f317553c9ca52bc9771c9a7 (diff)
Drop redundant CFLAGS, was already included in CXXFLAGS
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b6861e9c..f9f7af03 100644
--- a/Makefile
+++ b/Makefile
@@ -32,7 +32,7 @@ include lib/Makefile.local
include Makefile.config
%.o: %.cc $(all_deps)
- $(CXX) -c $(CFLAGS) $(CXXFLAGS) $< -o $@
+ $(CXX) -c $(CXXFLAGS) $< -o $@
%.o: %.c $(all_deps)
$(CC) -c $(CFLAGS) $< -o $@