aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-19 22:24:28 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-19 22:24:28 -0700
commitfedef062cea1c171c1624d8864cc13f0189a1adf (patch)
tree5b6c369579909e92e0ba7437a1f4a57dcbebf129 /Makefile
parent22691064666c03c5e76bc787395bfe586929f4cc (diff)
Remove test programs, xapian-dump and notmuch-index-message
These were just little tests while getting comfortable with GMime and xapian. I'll likely use pieces of these as notmuch continues, but for now let's not distract anyone looking at notmuch with these. And the code will live on in the history if I need to look at it.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index ef8d6410..7c15d6c1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-PROGS=notmuch notmuch-index-message xapian-dump
+PROGS=notmuch
MYCFLAGS=-Wall -O0 -g `pkg-config --cflags glib-2.0`
MYCXXFLAGS=$(MYCFLAGS) `xapian-config --cxxflags`
@@ -16,11 +16,5 @@ all: $(PROGS)
notmuch: notmuch.o database.o date.o message.o xutil.o
$(CC) $(MYLDFLAGS) $^ -o $@
-notmuch-index-message: notmuch-index-message.cc
- $(CXX) $(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) *.o