diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-09-09 20:15:23 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-09-09 20:15:23 -0700 |
commit | 8955d56f9fc5b9703d1d96924260a1c8514534ae (patch) | |
tree | 7c6ae15fba10e36dab229964b522c198507ae043 | |
parent | 962a3282e71fa75f6a4d0678a9f42272bbcd4741 (diff) | |
download | txr-8955d56f9fc5b9703d1d96924260a1c8514534ae.tar.gz txr-8955d56f9fc5b9703d1d96924260a1c8514534ae.tar.bz2 txr-8955d56f9fc5b9703d1d96924260a1c8514534ae.zip |
build: clean target should remove run.sh
* Makefile (clean): If it exists, remove the temporary run.sh
that is generated by the install-tests target.
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -338,7 +338,7 @@ distclean: $(V)echo "executing generic cleanup for non-configured directory" rm -f txr txr.exe txr-dbg txr-dbg.exe txr-win.exe txr-win-dbg.exe rm -rf y.tab.c lex.yy.c y.tab.h y.output - rm -rf config opt dbg share/txr/stdlib/*.tlo* + rm -rf config opt dbg share/txr/stdlib/*.tlo* run.sh rm -f config.* rm -rf mpi-1.?.? else @@ -348,7 +348,7 @@ clean: conftest.clean clean-tlo rm -f $(PROG)$(EXE) $(PROG)-dbg$(EXE) y.tab.c lex.yy.c y.tab.h y.output rm -f y.tab.h.old rm -f $(PROG)-win$(EXE) $(PROG)-win-dbg$(EXE) - rm -rf opt dbg $(EXTRA_OBJS-y) + rm -rf opt dbg $(EXTRA_OBJS-y) run.sh clean-tlo: rm -f $(STDLIB_TLOS) |