aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 0f50a434d22379f8c49a6a69a3cd5946e715bb95 (plain)
1
2
3
4
5
6
7
8
9
PROGS=g_mime_test

all: $(PROGS)

g_mime_test: g_mime_test.c
	$(CC) g_mime_test.c `pkg-config --cflags --libs gmime-2.4` -o g_mime_test

clean:
	rm -f $(PROGS)