Fix missing xapian-flags when generating dependencies.

I didn't notice this because `xapian-config -cxxflags` gives empty
output on my system. But for someone with the xapian library
installed in some non-standard location this would be important.
This commit is contained in:
Carl Worth 2009-10-25 16:09:31 -07:00
parent 445234ac1f
commit 179629b672

View file

@ -33,7 +33,7 @@ notmuch: $(MODULES)
$(CC) $(MYLDFLAGS) $^ -o $@
Makefile.dep: *.c *.cc
$(CC) -M $(CPPFLAGS) $(CDEPENDS_FLAGS) $^ > $@
$(CXX) -M $(CPPFLAGS) $(CDEPENDS_FLAGS) $(CXXDEPENDS_FLAGS) $^ > $@
-include Makefile.dep
clean: