]> git.notmuchmail.org Git - notmuch/blob - Makefile
Use gmime's own reference-parsing code.
[notmuch] / Makefile
1 PROGS=notmuch-index-message xapian-dump
2
3 MYCXXFLAGS=-Wall
4
5 all: $(PROGS)
6
7 notmuch-index-message: notmuch-index-message.cc
8         $(CC) $(CXXFLAGS) $(MYCXXFLAGS) notmuch-index-message.cc `pkg-config --cflags --libs gmime-2.4` `xapian-config --cxxflags --libs` -o notmuch-index-message
9
10 xapian-dump: xapian-dump.cc
11         $(CXX) $(CXXFLAGS) $(MYCXXFLAGS) xapian-dump.cc `xapian-config --libs --cxxflags` -o xapian-dump
12
13 clean:
14         rm -f $(PROGS)