From 0d4b48eb7c0479b617bb2c9cd30a809472aabb59 Mon Sep 17 00:00:00 2001 From: chris mikkelson Date: Tue, 9 Mar 2010 16:01:47 -0600 Subject: [PATCH] Added 'tags' target --- .gitignore | 1 + Makefile | 4 ++++ 2 files changed, 5 insertions(+) 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) -- 2.50.1