# # This source code is free software; you can redistribute it # and/or modify it in source code form under the terms of the GNU # Library General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free # Software Foundation, Inc., # 59 Temple Place - Suite 330 # Boston, MA 02111-1307, USA # #ident "$Id: Makefile.in,v 1.136 2002/11/11 01:12:41 steve Exp $" # # SHELL = /bin/sh # This version string is only used in the version message printed # by the compiler. It reflects the assigned version number for the # product as a whole. Most components also print the CVS Name: token # in order to get a more automatic version stamp as well. VERSION = 0.6 prefix = @prefix@ exec_prefix = @exec_prefix@ srcdir = @srcdir@ SUBDIRS = @subdirs@ VPATH = $(srcdir) bindir = @bindir@ libdir = @libdir@ includedir = $(prefix)/include mandir = @mandir@ dllib=@DLLIB@ rdynamic=@rdynamic@ strip_dynamic=@strip_dynamic@ CC = @CC@ CXX = @CXX@ INSTALL = @INSTALL@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ STRIP = @STRIP@ LEX = @LEX@ YACC = @YACC@ CPPFLAGS = @CPPFLAGS@ @DEFS@ CXXFLAGS = @CXXFLAGS@ -I. -I$(srcdir) PICFLAGS = @PICFLAG@ LDFLAGS = @LDFLAGS@ # The TARGETS variable lists the target modules that can be build and # installed. Some of them depend on external things, so are only # compiled if the prerequisites are installed. TARGETS = tgt-null ifeq ('@HAVE_IPAL@','yes') TARGETS += tgt-pal endif all: ivl@EXEEXT@ libvpi.a for dir in $(SUBDIRS) ; do (cd $$dir ; $(MAKE) all); done cd vpi ; $(MAKE) all cd ivlpp ; $(MAKE) all cd driver ; $(MAKE) VERSION=$(VERSION) all cd tgt-verilog ; $(MAKE) all cd tgt-stub ; $(MAKE) all for tgt in $(TARGETS); do (cd $$tgt ; $(MAKE) all); done # In the windows world, the installer will need a dosify program to # dosify text files. ifeq (@WIN32@,yes) all: dosify.exe dosify.exe: dosify.c $(CC) -o dosify.exe dosify.c else all: iverilog-vpi endif # This rule rules the compiler in the trivial hello.vl program to make # sure the basics were compiled properly. check: all for dir in $(SUBDIRS); do (cd $$dir ; $(MAKE) check); done driver/iverilog -Ccheck.conf -ocheck.vvp -tvvp-check -B./ivlpp $(srcdir)/examples/hello.vl vvp/vvp -M./vpi ./check.vvp | grep 'Hello, World' clean: rm -f *.o parse.cc parse.cc.output parse.h dep/*.d lexor.cc lexor_keyword.cc ivl@EXEEXT@ libivl.a libvpi.a iverilog-vpi cd vpi ; $(MAKE) clean cd driver ; $(MAKE) clean cd ivlpp ; $(MAKE) clean cd tgt-verilog ; $(MAKE) clean cd tgt-stub ; $(MAKE) clean for dir in $(SUBDIRS); do (cd $$dir ; $(MAKE) clean); done for tgt in $(TARGETS); do (cd $$tgt ; $(MAKE) clean); done distclean: clean for dir in $(SUBDIRS); do (cd $$dir ; $(MAKE) distclean); done for tgt in $(TARGETS); do (cd $$tgt ; $(MAKE) distclean); done rm -f vpi/Makefile rm -f ivlpp/Makefile rm -f driver/Makefile rm -f config.status config.cache config.log rm -f Makefile rm -f tgt-pal/Makefile tgt-stub/Makefile tgt-verilog/Makefile TT = t-dll.o t-dll-api.o t-dll-expr.o t-dll-proc.o t-xnf.o FF = cprop.o nodangle.o synth.o synth2.o syn-rules.o xnfio.o O = main.o async.o design_dump.o dup_expr.o elaborate.o elab_expr.o \ elab_lval.o elab_net.o elab_anet.o elab_pexpr.o elab_scope.o \ elab_sig.o emit.o eval.o eval_attrib.o eval_rconst.o \ eval_tree.o expr_synth.o functor.o lexor.o lexor_keyword.o link_const.o \ load_module.o netlist.o netmisc.o net_assign.o \ net_design.o net_event.o net_expr.o net_force.o net_func.o \ net_link.o net_modulo.o net_nex_input.o net_nex_output.o \ net_proc.o net_scope.o net_udp.o pad_to_width.o \ parse.o parse_misc.o pform.o pform_dump.o \ set_width.o sync.o \ verinum.o verireal.o target.o targets.o \ Attrib.o HName.o LineInfo.o Module.o PDelays.o PEvent.o \ PExpr.o PGate.o \ PTask.o PFunction.o PWire.o Statement.o StringHeap.o \ $(FF) $(TT) Makefile: Makefile.in config.h.in config.status ./config.status libvpi.a: vpithunk.o rm -f $@ ar cvq $@ vpithunk.o ranlib $@ # The vpithunk.c file (that makes up the libvpi.a library) needs to # be make with PIC flags, because shared objects load it. vpithunk.o: vpithunk.c @[ -d dep ] || mkdir dep $(CC) $(CPPFLAGS) $(CFLAGS) $(PICFLAGS) -MD -c $< -o $*.o mv $*.d dep/$*.d ifeq (@WIN32@,yes) # Under Windows (mingw) I need to make the ivl.exe in two steps. # The first step makes an ivl.exe that dlltool can use to make an # export and import library, and the last link makes a, ivl.exe # that really exports the things that the import library imports. ivl@EXEEXT@: $O ivl.def $(CXX) -o ivl@EXEEXT@ $O $(dllib) @EXTRALIBS@ dlltool --dllname ivl@EXEEXT@ --def ivl.def \ --output-lib libivl.a --output-exp ivl.exp $(CXX) -o ivl@EXEEXT@ ivl.exp $O $(dllib) @EXTRALIBS@ else ivl@EXEEXT@: $O $(CXX) $(CXXFLAGS) $(rdynamic) $(LDFLAGS) -o ivl@EXEEXT@ $O $(dllib) endif ifeq (@WIN32@,yes) else iverilog-vpi: iverilog-vpi.sh sed -e 's;@SHARED@;@shared@;' -e 's;@PIC@;@PICFLAG@;' \ -e 's;@INCLUDEDIR@;@includedir@;' -e 's;@LIBDIR@;@libdir@;' $< > $@ chmod +x $@ endif %.o: %.cc @[ -d dep ] || mkdir dep $(CXX) @ident_support@ $(CPPFLAGS) $(CXXFLAGS) -MD -c $< -o $*.o mv $*.d dep/$*.d lexor.o: lexor.cc parse.h parse.o: parse.cc parse.h parse.cc: $(srcdir)/parse.y $(YACC) --verbose -t -p VL -d -o parse.cc $(srcdir)/parse.y mv parse.cc.h parse.h || mv parse.hh parse.h syn-rules.cc: $(srcdir)/syn-rules.y $(YACC) --verbose -p syn_ -o syn-rules.cc $(srcdir)/syn-rules.y lexor.cc: $(srcdir)/lexor.lex $(LEX) -PVL -s -olexor.cc $(srcdir)/lexor.lex lexor_keyword.o: lexor_keyword.cc lexor_keyword.cc: lexor_keyword.gperf gperf -o -i 7 -C -k 1-3,$$ -L ANSI-C -H keyword_hash -N check_identifier -t $(srcdir)/lexor_keyword.gperf > lexor_keyword.cc || (rm -f lexor_keyword.cc ; false) iverilog-vpi.ps: $(srcdir)/iverilog-vpi.man man -t $(srcdir)/iverilog-vpi.man > iverilog-vpi.ps iverilog-vpi.pdf: iverilog-vpi.ps ps2pdf iverilog-vpi.ps iverilog-vpi.pdf ifeq (@WIN32@,yes) INSTALL_DOC = $(prefix)/iverilog-vpi.pdf INSTALL_DOCDIR = all: iverilog-vpi.pdf else INSTALL_DOC = $(mandir)/man1/iverilog-vpi.1 INSTALL_DOCDIR = $(mandir)/man1 endif ifeq (@WIN32@,yes) WIN32_INSTALL = $(prefix)/hello.vl $(prefix)/sqrt.vl $(prefix)/sqrt-virtex.v $(prefix)/QUICK_START.txt else WIN32_INSTALL = $(bindir)/iverilog-vpi endif install: all installdirs $(libdir)/ivl/ivl@EXEEXT@ $(libdir)/ivl/iverilog.conf $(includedir)/ivl_target.h $(includedir)/vpi_user.h $(includedir)/acc_user.h $(includedir)/veriuser.h $(libdir)/libvpi.a $(WIN32_INSTALL) $(INSTALL_DOC) cd vpi ; $(MAKE) install cd ivlpp ; $(MAKE) install cd driver ; $(MAKE) install for tgt in $(SUBDIRS); do (cd $$tgt ; $(MAKE) install); done for tgt in $(TARGETS); do (cd $$tgt ; $(MAKE) install); done $(bindir)/iverilog-vpi: ./iverilog-vpi $(INSTALL_PROGRAM) ./iverilog-vpi $(bindir)/iverilog-vpi $(libdir)/libvpi.a : ./libvpi.a $(INSTALL_DATA) libvpi.a $(libdir)/libvpi.a $(libdir)/ivl/ivl@EXEEXT@: ./ivl@EXEEXT@ $(INSTALL_PROGRAM) ./ivl@EXEEXT@ $(libdir)/ivl/ivl@EXEEXT@ $(STRIP) $(strip_dynamic) $(libdir)/ivl/ivl@EXEEXT@ # Install iverilog.conf whenever ivl.exe is installed. This # forces iverilog.conf to be treated similarly, in spite of # dates in the source bundle. $(libdir)/ivl/iverilog.conf: $(libdir)/ivl/ivl@EXEEXT@ $(INSTALL_DATA) $(srcdir)/iverilog.conf $(libdir)/ivl/iverilog.conf $(includedir)/ivl_target.h: $(srcdir)/ivl_target.h $(INSTALL_DATA) $(srcdir)/ivl_target.h $(includedir)/ivl_target.h $(includedir)/vpi_user.h: $(srcdir)/vpi_user.h $(INSTALL_DATA) $(srcdir)/vpi_user.h $(includedir)/vpi_user.h $(includedir)/acc_user.h: $(srcdir)/acc_user.h $(INSTALL_DATA) $(srcdir)/acc_user.h $(includedir)/acc_user.h $(includedir)/veriuser.h: $(srcdir)/veriuser.h $(INSTALL_DATA) $(srcdir)/veriuser.h $(includedir)/veriuser.h $(mandir)/man1/iverilog-vpi.1: $(srcdir)/iverilog-vpi.man $(INSTALL_DATA) $(srcdir)/iverilog-vpi.man $(mandir)/man1/iverilog-vpi.1 $(prefix)/iverilog-vpi.pdf: iverilog-vpi.pdf $(INSTALL_DATA) iverilog-vpi.pdf $(prefix)/iverilog-vpi.pdf # In windows installations, put a few examples and the quick_start # into the destination directory. ifeq (@WIN32@,yes) $(prefix)/hello.vl: $(srcdir)/examples/hello.vl ./dosify.exe $(srcdir)/examples/hello.vl tmp.vl mv tmp.vl $(prefix)/hello.vl $(prefix)/sqrt.vl: $(srcdir)/examples/sqrt.vl ./dosify.exe $(srcdir)/examples/sqrt.vl tmp.vl mv tmp.vl $(prefix)/sqrt.vl $(prefix)/sqrt-virtex.v: $(srcdir)/examples/sqrt-virtex.v ./dosify.exe $(srcdir)/examples/sqrt-virtex.v tmp.vl mv tmp.vl $(prefix)/sqrt-virtex.v $(prefix)/QUICK_START.txt: $(srcdir)/QUICK_START.txt ./dosify.exe $(srcdir)/QUICK_START.txt tmp.txt mv tmp.txt $(prefix)/QUICK_START.txt endif installdirs: mkinstalldirs $(srcdir)/mkinstalldirs $(bindir) $(includedir) $(libdir)/ivl \ $(mandir) $(mandir)/man1 uninstall: rm -f $(libdir)/ivl/iverilog.conf rm -f $(libdir)/ivl/ivl -rmdir $(libdir)/ivl rm -f $(libdir)/libvpi.a rm -f $(bindir)/verilog rm -f $(bindir)/iverilog-vpi rm -f $(bindir)/gverilog@EXEEXT@ rm -f $(includedir)/ivl_target.h rm -f $(includedir)/vpi_user.h rm -f $(includedir)/acc_user.h rm -f $(includedir)/veriuser.h rm -f $(mandir)/man1/iverilog-vpi.1 cd driver ; $(MAKE) uninstall cd vpi ; $(MAKE) uninstall cd ivlpp ; $(MAKE) uninstall for tgt in $(SUBDIRS); do (cd $$tgt ; $(MAKE) uninstall); done for tgt in $(TARGETS); do (cd $$tgt ; $(MAKE) uninstall); done -include $(patsubst %.o, dep/%.d, $O) -include $(patsubst %.o, dep/%.d, vpithunk.o)