aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-13 13:28:13 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-13 13:31:17 -0700
commitc55c34f4a08829c2734168a912c0ad371b934d30 (patch)
treebfee05f3366b11bde16f353e3fae12426227ea57 /Makefile
parenta68a023d474931d8dfad27596a16511851b4d063 (diff)
Rename g_mime_test to notmuch-index-message
In preparation for actually creating a Xapian index from the message, (not that we're doing that quite yet).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 614c5760..bf3a5200 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,11 @@
-PROGS=g_mime_test xapian-dump
+PROGS=notmuch-index-message xapian-dump
-MYCFLAGS=-Wall
MYCXXFLAGS=-Wall
all: $(PROGS)
-g_mime_test: g_mime_test.c
- $(CC) $(CFLAGS) $(MYCFLAGS) 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