iverilog/Makefile.in

107 lines
2.6 KiB
Makefile
Raw Normal View History

1999-04-25 23:54:33 +02:00
#
# 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. In order to redistribute the software in
# binary form, you will need a Picture Elements Binary Software
# License.
#
# 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.12 1999/08/15 01:23:56 steve Exp $"
1999-04-25 23:54:33 +02:00
#
#
SHELL = /bin/sh
VERSION = 0.0
prefix = @prefix@
exec_prefix = @exec_prefix@
srcdir = @srcdir@
VPATH = $(srcdir)
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib
includedir = $(prefix)/include
CC = @CC@
CXX = @CXX@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
CPPFLAGS = @CPPFLAGS@ @DEFS@
CXXFLAGS = @CXXFLAGS@
LDFLAGS = @LDFLAGS@
all: ivl
cd vpi ; make all
1999-08-07 22:05:51 +02:00
cd vvm ; make all
1999-07-03 22:50:28 +02:00
cd ivlpp ; make all
1999-04-25 23:54:33 +02:00
clean:
rm *.o parse.cc parse.cc.output parse.h dep/*.d lexor.cc
cd vpi ; make clean
1999-08-07 22:05:51 +02:00
cd vvm ; make clean
1999-07-03 22:50:28 +02:00
cd ivlpp ; make clean
1999-04-25 23:54:33 +02:00
TT = t-null.o t-verilog.o t-vvm.o t-xnf.o
FF = nobufz.o propinit.o sigfold.o xnfio.o xnfsyn.o
1999-04-25 23:54:33 +02:00
O = main.o cprop.o design_dump.o elaborate.o emit.o eval.o functor.o \
lexor.o mangle.o netlist.o parse.o parse_misc.o pform.o pform_dump.o \
verinum.o verireal.o target.o targets.o Module.o PExpr.o PGate.o \
PTask.o PFunction.o PWire.o Statement.o \
1999-07-03 04:12:51 +02:00
$(FF) $(TT)
1999-04-25 23:54:33 +02:00
Makefile: Makefile.in config.status
./config.status
ivl: $O
$(CXX) $(CXXFLAGS) -o ivl $O
%.o dep/%.d: %.cc
1999-04-26 04:45:08 +02:00
@[ -d dep ] || mkdir dep
1999-04-25 23:54:33 +02:00
$(CXX) $(CXXFLAGS) -MD -c $< -o $*.o
mv $*.d dep/$*.d
lexor.o dep/lexor.d: lexor.cc parse.h
1999-06-15 04:50:02 +02:00
parse.o dep/parse.d: parse.cc
1999-04-25 23:54:33 +02:00
parse.h parse.cc: parse.y
bison --verbose -t -p VL -d parse.y -o parse.cc
mv parse.cc.h parse.h
lexor.cc: lexor.lex
flex -PVL -s -olexor.cc lexor.lex
1999-05-08 22:37:59 +02:00
install: all installdirs $(bindir)/ivl
cd vpi ; make install
1999-08-07 22:05:51 +02:00
cd vvm ; make install
1999-07-03 22:50:28 +02:00
cd ivlpp ; make install
1999-04-25 23:54:33 +02:00
1999-05-08 22:37:59 +02:00
$(bindir)/ivl: ivl
$(INSTALL_PROGRAM) ./ivl $(bindir)/ivl
1999-04-25 23:54:33 +02:00
installdirs: mkinstalldirs
$(srcdir)/mkinstalldirs $(includedir) $(bindir)
uninstall:
1999-05-08 22:37:59 +02:00
rm -f $(bindir)/ivl
1999-04-25 23:54:33 +02:00
-include $(patsubst %.o, dep/%.d, $O)