From: chris mikkelson Date: Tue, 9 Mar 2010 22:01:47 +0000 (-0600) Subject: Added 'tags' target X-Git-Url: https://git.mikk.net/?a=commitdiff_plain;h=0d4b48eb7c0479b617bb2c9cd30a809472aabb59;p=liburl Added 'tags' target --- diff --git a/.gitignore b/.gitignore index 6fdcc48..a90cf5b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.o liburl.a +tags diff --git a/Makefile b/Makefile index 63e1ddc..a87248c 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ CFLAGS=-g -Wall -Werror -I/usr/local/include .c.o: $(CC) $(CFLAGS) -c $> +SRCS=msgproc.c base64.c quoted-printable.c re_stream.c html.c text.c multipart.c OBJS=msgproc.o base64.o quoted-printable.o re_stream.o html.o text.o multipart.o default: liburl.a @@ -12,3 +13,6 @@ liburl.a: $(OBJS) clean: rm liburl.a $(OBJS) + +tags: + ctags $(SRCS)