aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-12 15:50:02 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-13 08:52:02 -0700
commit7d0886352cff30c5d79155d144f8ef2384b38829 (patch)
tree7b8d4dca054c20c92b120a399f0132036e0145d7 /Makefile
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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..0f50a434
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,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)