diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2013-10-28 11:35:55 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2013-10-28 11:35:55 +0400 |
commit | 32019da3a46bc60ac060957a5077dc2c25017186 (patch) | |
tree | 65e889019de020c37e1abc51da8922a5c364c98f | |
parent | b6c7291b3d1f904b20955c3f9829b8cc92801227 (diff) | |
download | nasm-32019da3a46bc60ac060957a5077dc2c25017186.tar.gz nasm-32019da3a46bc60ac060957a5077dc2c25017186.tar.bz2 nasm-32019da3a46bc60ac060957a5077dc2c25017186.zip |
Revert "make: Remove generated files on clean target"
This reverts commit b6c7291b3d1f904b20955c3f9829b8cc92801227.
We already have this cleanup stage in "cleaner" target, I managed
to miss it.
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 09a1e00..d692dd2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -179,15 +179,13 @@ directiv.h: directiv.dat directiv.pl perllib/phash.ph directiv.c: directiv.dat directiv.pl perllib/phash.ph $(PERL) $(srcdir)/directiv.pl c $(srcdir)/directiv.dat directiv.c - - # This target generates all files that require perl. # This allows easier generation of distribution (see dist target). PERLREQ = macros.c insnsb.c insnsa.c insnsd.c insnsi.h insnsn.c \ regs.c regs.h regflags.c regdis.c regdis.h regvals.c \ tokhash.c tokens.h pptok.h pptok.c pptok.ph \ directiv.c directiv.h \ - version.h version.mac version.mak version.sed version.nsh + version.h version.mac version.mak version.nsh perlreq: $(PERLREQ) # Generated manpages, also pregenerated for distribution @@ -207,7 +205,6 @@ clean: $(RM) -f output/*.$(O) output/*.s output/*.i $(RM) -f nasm$(X) ndisasm$(X) $(RM) -f tags TAGS - $(RM) -f $(PERLREQ) cd rdoff && $(MAKE) clean distclean: clean |