aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2016-02-08 03:41:47 -0500
committerB. Watson <yalhcru@gmail.com>2016-02-08 03:41:47 -0500
commitfdc8911c487236fe978e7f010b299ce98cc223aa (patch)
treebce01e5a41f74b0438e2731369cc294899147d38
parent84134563dabb19560c43ebab38dd4cace83c3608 (diff)
downloadtaipan-fdc8911c487236fe978e7f010b299ce98cc223aa.tar.gz
make ctags optional and let it fail silently, if ctags not installed
-rw-r--r--Makefile3
-rw-r--r--taipan.c2
2 files changed, 1 insertions, 4 deletions
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.
diff --git a/taipan.c b/taipan.c
index 0789431..9731162 100644
--- a/taipan.c
+++ b/taipan.c
@@ -2431,14 +2431,12 @@ void li_yuen_extortion(void) {
"amount to your debt.\r\n");
} else {
cash = 0;
-
cputs("Very well. ");
cprint_elder_brother_wu();
cputs("will not pay\r\n"
"Li Yuen the difference. I would be very\r\n"
"wary of pirates if I were you");
cprint_taipan_period();
- // cputs("\r\n");
crlf();
}
timed_getch();