summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-12-22 13:53:30 -0800
committerKaz Kylheku <kaz@kylheku.com>2016-12-22 13:53:30 -0800
commit6561621c4153c4fc18d0e0d7ea9f9eb7da9c580d (patch)
treec8378afe755355a914b5d647ee8a607729d74419
parent2e35f5744d860fa0d43aad6bf59b6fc02d13f8e9 (diff)
downloadtxr-6561621c4153c4fc18d0e0d7ea9f9eb7da9c580d.tar.gz
txr-6561621c4153c4fc18d0e0d7ea9f9eb7da9c580d.tar.bz2
txr-6561621c4153c4fc18d0e0d7ea9f9eb7da9c580d.zip
bugfix: make clean not removing txr-win.exe
* Makefile (clean): Remove txr-win an txr-win-dbg executables if they exist. Because of this issue, stale txr-win executables got packaged in some Windows installer releases.
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1939ff55..5e871344 100644
--- a/Makefile
+++ b/Makefile
@@ -274,6 +274,7 @@ rebuild: clean repatch $(PROG)
clean: conftest.clean tests.clean
rm -f $(PROG)$(EXE) $(PROG)-dbg$(EXE) y.tab.c lex.yy.c y.tab.h y.output
+ rm -f $(PROG)-win$(EXE) $(PROG)-win-dbg$(EXE)
rm -rf opt dbg $(EXTRA_OBJS-y)
distclean: clean