diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-12-22 13:53:30 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-12-22 13:53:30 -0800 |
commit | d9d04630165b65b70feeba43f8ceda8a863d90f5 (patch) | |
tree | c8378afe755355a914b5d647ee8a607729d74419 /Makefile | |
parent | 00d7efc3c5eef5687aecb6f2b88cf189bc39059f (diff) | |
download | txr-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-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |