commit 64c119a10f6f2e4c1e3404896827f14da4d5f379 (patch)
parent 0a1c8ab6e9e02b8a8293598b1a4d1ae8fc063701
Author: Alex Karle <alex@karle.co>
Date: Sat, 11 Apr 2020 17:14:24 -0400
make: Add tags recipe for ctags+Perl integration
Man oh man jump to definition is so important
Diffstat:
2 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -1,3 +1,4 @@
node_modules
public/asset
+tags
diff --git a/Makefile b/Makefile
@@ -1,3 +1,11 @@
+.PHONY: all
+all: test tags
+
+.PHONY: tags
+tags:
+ ctags -R lib/ t/ gloat.pl
+
+.PHONY: test
test:
perl -c gloat.pl
perl t/Card.t