Merge pull request #4692 from CyberShadow/pull-20150530-153836

posix.mak: Add DELETE_ON_ERROR
This commit is contained in:
Dmitry Olshansky 2015-06-14 13:04:10 +03:00
commit 58b3055455
2 changed files with 6 additions and 0 deletions

View file

@ -30,3 +30,5 @@ install: all
cp -r samples $(INSTALL_DIR)
mkdir -p $(INSTALL_DIR)/man
cp -r docs/man/* $(INSTALL_DIR)/man/
.DELETE_ON_ERROR: # GNU Make directive (delete output files on error)

View file

@ -582,3 +582,7 @@ DSRC= $(GENSRC) $(MANUALSRC)
ddmd: mars.d $(MANUALSRC) newdelete.o glue.a backend.a $(HOST_DC)
CC=$(HOST_CC) $(HOST_DC_RUN) $(MODEL_FLAG) $(DSRC) -ofddmd newdelete.o glue.a backend.a -vtls -J.. -d $(DFLAGS)
#############################
.DELETE_ON_ERROR: # GNU Make directive (delete output files on error)