summaryrefslogtreecommitdiffstats
path: root/Makefile
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
commitd9d04630165b65b70feeba43f8ceda8a863d90f5 (patch)
treec8378afe755355a914b5d647ee8a607729d74419 /Makefile
parent00d7efc3c5eef5687aecb6f2b88cf189bc39059f (diff)
downloadtxr-d9d04630165b65b70feeba43f8ceda8a863d90f5.tar.gz
txr-d9d04630165b65b70feeba43f8ceda8a863d90f5.tar.bz2
txr-d9d04630165b65b70feeba43f8ceda8a863d90f5.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.
Diffstat (limited to 'Makefile')
-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