From 11f99eb8eac3206f200a40a536ff3657ba577594 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 13 Oct 2009 07:50:04 -0700 Subject: Add the beginnings of a xapian-dump program. This will (when it is finished) make a much more reliable way to ensure that notmuch's sync program behaves identically to sup-sync. It doesn't actually do anything yet. --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0f50a434..614c5760 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,15 @@ -PROGS=g_mime_test +PROGS=g_mime_test xapian-dump + +MYCFLAGS=-Wall +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 + $(CC) $(CFLAGS) $(MYCFLAGS) g_mime_test.c `pkg-config --cflags --libs gmime-2.4` -o g_mime_test + +xapian-dump: xapian-dump.cc + $(CXX) $(CXXFLAGS) $(MYCXXFLAGS) xapian-dump.cc `xapian-config --libs --cxxflags` -o xapian-dump clean: rm -f $(PROGS) -- cgit v1.2.3