From 41660aab650ed63ce1b8ab5429b1d1a8d99a3830 Mon Sep 17 00:00:00 2001 From: chris mikkelson Date: Sat, 27 Feb 2010 18:55:47 -0600 Subject: [PATCH] Added Makefile. --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 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) -- 2.50.1