From b85aa872cc16c061f2297004ee603e3fda3daae8 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Wed, 11 Jun 2008 15:13:41 -0400 Subject: [PATCH] Make install now installs verilator_includer and verilator_profcfunc. --- Changes | 6 ++++-- Makefile.in | 5 ++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index f6011349c..de37dd1d6 100644 --- a/Changes +++ b/Changes @@ -5,14 +5,16 @@ indicates the contributor was also the author of the fix; Thanks! * Verilator 3.66* +**** Ignore "// verilator" comments alone on endif lines. [Rodney Sinclair] + +**** "Make install" now installs verilator_includer and verilator_profcfunc. + **** Fix syntax error when "`include `defname" is ifdefed. [John Dickol] **** Fix error when macro call has commas in concatenate. [John Dickol] **** Fix compile errors under Fedora 9, GCC 4.3.0. [by Jeremy Bennett] -**** Ignore "// verilator" comments alone on endif lines. [Rodney Sinclair] - * Verilator 3.664 2008/05/08 **** Fix missing file in kit. diff --git a/Makefile.in b/Makefile.in index 50f7ac776..21cc5bf0b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -219,10 +219,13 @@ README: readme.texi --no-headers --no-validate # See uninstall also -VL_INST_BIN_FILES = verilator verilator_bin verilator_bin_dbg +VL_INST_BIN_FILES = verilator verilator_bin verilator_bin_dbg \ + verilator_includer verilator_profcfunc installbin: $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(bindir) ( cd bin ; $(INSTALL_PROGRAM) verilator $(DESTDIR)$(bindir)/verilator ) + ( cd bin ; $(INSTALL_PROGRAM) verilator_includer $(DESTDIR)$(bindir)/verilator_includer ) + ( cd bin ; $(INSTALL_PROGRAM) verilator_profcfunc $(DESTDIR)$(bindir)/verilator_profcfunc ) ( $(INSTALL_PROGRAM) verilator_bin $(DESTDIR)$(bindir)/verilator_bin ) ( $(INSTALL_PROGRAM) verilator_bin_dbg $(DESTDIR)$(bindir)/verilator_bin_dbg )