]> git.notmuchmail.org Git - notmuch/blobdiff - Makefile
Use gmime's own reference-parsing code.
[notmuch] / Makefile
index 0f50a434d22379f8c49a6a69a3cd5946e715bb95..bf3a5200ff74b99e47c94e0b674c762c3294b2e1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,14 @@
-PROGS=g_mime_test
+PROGS=notmuch-index-message xapian-dump
+
+MYCXXFLAGS=-Wall
 
 all: $(PROGS)
 
-g_mime_test: g_mime_test.c
-       $(CC) g_mime_test.c `pkg-config --cflags --libs gmime-2.4` -o g_mime_test
+notmuch-index-message: notmuch-index-message.cc
+       $(CC) $(CXXFLAGS) $(MYCXXFLAGS) notmuch-index-message.cc `pkg-config --cflags --libs gmime-2.4` `xapian-config --cxxflags --libs` -o notmuch-index-message
+
+xapian-dump: xapian-dump.cc
+       $(CXX) $(CXXFLAGS) $(MYCXXFLAGS) xapian-dump.cc `xapian-config --libs --cxxflags` -o xapian-dump
 
 clean:
        rm -f $(PROGS)