Drop redundant CFLAGS, was already included in CXXFLAGS

This commit is contained in:
Jed Brown 2009-11-20 16:58:15 +01:00 committed by Carl Worth
parent e94bd8506b
commit 49132ebc76

View file

@ -32,7 +32,7 @@ include lib/Makefile.local
include Makefile.config include Makefile.config
%.o: %.cc $(all_deps) %.o: %.cc $(all_deps)
$(CXX) -c $(CFLAGS) $(CXXFLAGS) $< -o $@ $(CXX) -c $(CXXFLAGS) $< -o $@
%.o: %.c $(all_deps) %.o: %.c $(all_deps)
$(CC) -c $(CFLAGS) $< -o $@ $(CC) -c $(CFLAGS) $< -o $@