mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
14 lines
436 B
Makefile
14 lines
436 B
Makefile
PROGS=notmuch-index-message xapian-dump
|
|
|
|
MYCXXFLAGS=-Wall -O0 -g
|
|
|
|
all: $(PROGS)
|
|
|
|
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
|
|
|
|
clean:
|
|
rm -f $(PROGS)
|