From: nasm-bot f. C. G. <gor...@gm...> - 2013-10-27 17:18:32
|
Commit-ID: b6c7291b3d1f904b20955c3f9829b8cc92801227 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=b6c7291b3d1f904b20955c3f9829b8cc92801227 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 27 Oct 2013 21:15:47 +0400 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 27 Oct 2013 21:15:47 +0400 make: Remove generated files on clean target Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index d692dd2..09a1e00 100644 --- a/Makefile.in +++ b/Makefile.in @@ -179,13 +179,15 @@ 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.nsh + version.h version.mac version.mak version.sed version.nsh perlreq: $(PERLREQ) # Generated manpages, also pregenerated for distribution @@ -205,6 +207,7 @@ 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 |