mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 12:28:09 +01:00
10 lines
160 B
Makefile
10 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)
|