Merge pull request #121 from tcal-x/del_on_fail
Add .DELETE_ON_ERROR to Makefiles (issue #119).
This commit is contained in:
commit
b0ee6d2264
|
@ -33,6 +33,9 @@ else
|
||||||
BOARD_BUILDDIR := ${BUILDDIR}/basys3
|
BOARD_BUILDDIR := ${BUILDDIR}/basys3
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
|
||||||
all: ${BOARD_BUILDDIR}/${TOP}.bit
|
all: ${BOARD_BUILDDIR}/${TOP}.bit
|
||||||
|
|
||||||
${BOARD_BUILDDIR}:
|
${BOARD_BUILDDIR}:
|
||||||
|
|
|
@ -22,6 +22,9 @@ else
|
||||||
BOARD_BUILDDIR := ${BUILDDIR}/arty_35
|
BOARD_BUILDDIR := ${BUILDDIR}/arty_35
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
|
||||||
all: ${BOARD_BUILDDIR}/${TOP}.bit
|
all: ${BOARD_BUILDDIR}/${TOP}.bit
|
||||||
|
|
||||||
${BOARD_BUILDDIR}:
|
${BOARD_BUILDDIR}:
|
||||||
|
|
|
@ -30,6 +30,9 @@ else
|
||||||
BOARD_BUILDDIR := ${BUILDDIR}/basys3
|
BOARD_BUILDDIR := ${BUILDDIR}/basys3
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
|
||||||
all: ${BUILDDIR}/${TOP}.bit
|
all: ${BUILDDIR}/${TOP}.bit
|
||||||
|
|
||||||
${BUILDDIR}:
|
${BUILDDIR}:
|
||||||
|
|
Loading…
Reference in New Issue