From fdc8911c487236fe978e7f010b299ce98cc223aa Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 8 Feb 2016 03:41:47 -0500 Subject: make ctags optional and let it fail silently, if ctags not installed --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4a8760a..c72c325 100644 --- a/Makefile +++ b/Makefile @@ -115,8 +115,7 @@ test: all # C. There's probably a clever way to get ctags to handle this, but I # don't know it, so I wrote a perl script to do the job. tags: - @ctags $(TAIMAIN_C_SRC) $(TAIMAIN_ASM_SRC) - @perl fixtags.pl tags + @ctags $(TAIMAIN_C_SRC) $(TAIMAIN_ASM_SRC) 2>/dev/null && perl fixtags.pl tags || true # The above is fast & easy, but from time to time it's necessary # to test slow loading, make sure the title screen stuff works OK. -- cgit v1.2.3