From d9d04630165b65b70feeba43f8ceda8a863d90f5 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Thu, 22 Dec 2016 13:53:30 -0800 Subject: 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. --- Makefile | 1 + 1 file changed, 1 insertion(+) 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 -- cgit v1.2.3