diff options
author | H. Peter Anvin <hpa@zytor.com> | 2003-09-12 22:30:50 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2003-09-12 22:30:50 +0000 |
commit | 9bab3d57d429a68fcf0cc84ccc0f98da6e188a4d (patch) | |
tree | 7548019c13df5623126a10dd64fb269be7ff33f0 /Makefile.in | |
parent | adc62fb0afac6142d24f0aecf8289b3a660394ec (diff) | |
download | nasm-9bab3d57d429a68fcf0cc84ccc0f98da6e188a4d.tar.gz nasm-9bab3d57d429a68fcf0cc84ccc0f98da6e188a4d.tar.bz2 nasm-9bab3d57d429a68fcf0cc84ccc0f98da6e188a4d.zip |
Don't delete config.h.in when doing "make spotless"
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index c07b6fb..a0dc211 100644 --- a/Makefile.in +++ b/Makefile.in @@ -127,7 +127,8 @@ clean: cd rdoff && $(MAKE) clean distclean: clean - rm -f config.* Makefile *~ *.bak *.lst *.bin + rm -f config.h config.log config.status + rm -f Makefile *~ *.bak *.lst *.bin rm -f output/*~ output/*.bak rm -f test/*.lst test/*.bin test/*.$(O) test/*.bin rm -rf autom4te*.cache |