mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
11f99eb8ea
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.
15 lines
354 B
Makefile
15 lines
354 B
Makefile
PROGS=g_mime_test 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
|
|
|
|
xapian-dump: xapian-dump.cc
|
|
$(CXX) $(CXXFLAGS) $(MYCXXFLAGS) xapian-dump.cc `xapian-config --libs --cxxflags` -o xapian-dump
|
|
|
|
clean:
|
|
rm -f $(PROGS)
|