notmuch/Makefile
Carl Worth 7d0886352c Initial commit of a test program to form the basis of notmuch.
Basically just playing with some simple code using libgmime to parse
an email message.
2009-10-13 08:52:02 -07:00

9 lines
160 B
Makefile

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)