diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-09-25 16:46:02 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-09-25 16:46:02 -0700 |
commit | ed67201fcc004ccb0eb20e5489d71ed69cfb7428 (patch) | |
tree | 55cea829c53c57d14577f65f35302a3bb6d97837 /com32/samples/Makefile | |
parent | 5c12206bf5c223df3f555c6c2b4aed06cfe357a1 (diff) | |
download | syslinux-elf-ed67201fcc004ccb0eb20e5489d71ed69cfb7428.tar.gz syslinux-elf-ed67201fcc004ccb0eb20e5489d71ed69cfb7428.tar.xz syslinux-elf-ed67201fcc004ccb0eb20e5489d71ed69cfb7428.zip |
Fix "make clean" confusionsyslinux-3.72
"make clean" must NOT remove stuff that "make installer" should not
rebuild. This is a somewhat unfortunate choice of naming, but that's
the way it is.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32/samples/Makefile')
-rw-r--r-- | com32/samples/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/com32/samples/Makefile b/com32/samples/Makefile index 28260a35..abba4d6f 100644 --- a/com32/samples/Makefile +++ b/com32/samples/Makefile @@ -27,9 +27,10 @@ tidy dist: rm -f *.o *.lo *.a *.lst *.elf .*.d *.tmp clean: tidy - rm -f *.lss *.c32 *.lnx *.com + rm -f *.lnx spotless: clean + rm -f *.lss *.c32 *.com rm -f *~ \#* install: # Don't install samples |