aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 614c57600917cc6e25559ee7147962f8e6460a37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)