# HG changeset patch # User Oleksandr Gavenko # Date 1353966066 -7200 # Node ID a53df7bd6722a4020a7071264e2cf0dc902d5b1f # Parent caeb534c6e5991a188252eaf90c0f7a55b6d9173 Delete target file if command fails. diff -r caeb534c6e59 -r a53df7bd6722 Makefile --- a/Makefile Sat Nov 24 23:39:30 2012 +0200 +++ b/Makefile Mon Nov 26 23:41:06 2012 +0200 @@ -1,3 +1,7 @@ + +################################################################ +# Standard GNU Makefile settings. + SHELL = /bin/sh export PATH := /bin:/usr/bin:${PATH} @@ -7,6 +11,8 @@ MAKEFLAGS += -R # Disable built in suffix rules. .SUFFIXES: +# Delete target file if command fails. +.DELETE_ON_ERROR: # Default target. .DEFAULT_GOAL = all