diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2012-08-30 12:59:31 +0300 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-09-02 16:08:23 -0400 |
commit | 3dcc223e3d83a546ef3aed1fefe638787b7b6706 (patch) | |
tree | 6a17d037772455cdbddd777adb56b12fc94f1008 /Makefile | |
parent | 7f036855d99e5d0a73f96883b38a932958483070 (diff) | |
download | seabios-3dcc223e3d83a546ef3aed1fefe638787b7b6706.tar.gz |
Makefile: delete output on error
I had a disk full condition and a partial hex file
got generated. Following make failed trying to use it.
We can make build a bit more robust by instructing
make to remove output files on error.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -75,6 +75,7 @@ all: $(target-y) # Make definitions .PHONY : all clean distclean FORCE +.DELETE_ON_ERROR: vpath %.c src vgasrc vpath %.S src vgasrc |