commit 18eb5022959e5c69964866b6ecd5447d03b4bbfc
parent aa8111b8f005ab6adb99b44faf77718db65ddf72
Author: William Casarin <jb55@jb55.com>
Date: Sun, 5 Dec 2021 14:40:44 -0800
tweak makefile
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
@@ -2,6 +2,8 @@
CFLAGS = -g -Wall -Werror -std=c99
PREFIX ?= /usr
+all: datefmt
+
datefmt: datefmt.c
$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
@@ -12,4 +14,7 @@ install: datefmt
clean:
rm -f datefmt
+tags:
+ ctags datefmt.c
+
.PHONY: install clean