]> git.notmuchmail.org Git - notmuch/blob - Makefile
Add the beginnings of a xapian-dump program.
[notmuch] / Makefile
1 PROGS=g_mime_test xapian-dump
2
3 MYCFLAGS=-Wall
4 MYCXXFLAGS=-Wall
5
6 all: $(PROGS)
7
8 g_mime_test: g_mime_test.c
9         $(CC) $(CFLAGS) $(MYCFLAGS) g_mime_test.c `pkg-config --cflags --libs gmime-2.4` -o g_mime_test
10
11 xapian-dump: xapian-dump.cc
12         $(CXX) $(CXXFLAGS) $(MYCXXFLAGS) xapian-dump.cc `xapian-config --libs --cxxflags` -o xapian-dump
13
14 clean:
15         rm -f $(PROGS)