From: chris mikkelson Date: Sun, 28 Feb 2010 00:55:47 +0000 (-0600) Subject: Added Makefile. X-Git-Url: https://git.mikk.net/?a=commitdiff_plain;h=41660aab650ed63ce1b8ab5429b1d1a8d99a3830;p=liburl Added Makefile. --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dbe6f1f --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +CFLAGS=-Wall -Werror -I/usr/local/include + +.c.o: + $(CC) $(CFLAGS) -c $> + +OBJS=msgproc.o base64.o quoted-printable.o re_stream.o html.o text.o + +default: liburl.a + +liburl.a: $(OBJS) + ar crv $@ $(OBJS) + +clean: + rm liburl.a $(OBJS)