Avoid cleaning buildtmp for make clean. Causes subsequent make to fail.
This commit is contained in:
parent
9cbdd7ce8c
commit
7830473c65
1 changed files with 1 additions and 2 deletions
|
@ -401,10 +401,9 @@ test: all
|
||||||
(cd test; ulimit -c unlimited; sh ./run_test.sh $(TESTSUITE) ) 2>&1 | tee test.log
|
(cd test; ulimit -c unlimited; sh ./run_test.sh $(TESTSUITE) ) 2>&1 | tee test.log
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(PROG) $(OBJS) $(PROGOBJS) $(BAKFILES) $(LIB) $(LIB).$(LIBVER)
|
$(RM) buildtmp/$(PROG) $(OBJS) $(PROGOBJS) $(BAKFILES) $(LIB) $(LIB).$(LIBVER)
|
||||||
$(RM) test.log
|
$(RM) test.log
|
||||||
$(RM_RF) test/datafiles
|
$(RM_RF) test/datafiles
|
||||||
$(RM_RF) buildtmp
|
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
$(RM) Makefile
|
$(RM) Makefile
|
||||||
|
|
Loading…
Reference in a new issue