diff options
| author | B. Watson <yalhcru@gmail.com> | 2016-02-08 03:41:47 -0500 | 
|---|---|---|
| committer | B. Watson <yalhcru@gmail.com> | 2016-02-08 03:41:47 -0500 | 
| commit | fdc8911c487236fe978e7f010b299ce98cc223aa (patch) | |
| tree | bce01e5a41f74b0438e2731369cc294899147d38 /Makefile | |
| parent | 84134563dabb19560c43ebab38dd4cace83c3608 (diff) | |
| download | taipan-fdc8911c487236fe978e7f010b299ce98cc223aa.tar.gz | |
make ctags optional and let it fail silently, if ctags not installed
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 3 | 
1 files changed, 1 insertions, 2 deletions
| @@ -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. | 
