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 | 53c179c71f368f3dc44580d612c7c1abde06b918 (patch) | |
tree | 7c6ae15fba10e36dab229964b522c198507ae043 /Makefile | |
parent | 229de13e3ddaaf1ead3f0c09be87abcd97be61bf (diff) | |
download | txr-53c179c71f368f3dc44580d612c7c1abde06b918.tar.gz txr-53c179c71f368f3dc44580d612c7c1abde06b918.tar.bz2 txr-53c179c71f368f3dc44580d612c7c1abde06b918.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.
Diffstat (limited to 'Makefile')
-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) |