Add ivlpp targets.
This commit is contained in:
parent
413e0d2aa6
commit
954b42b66b
|
|
@ -18,7 +18,7 @@
|
||||||
# 59 Temple Place - Suite 330
|
# 59 Temple Place - Suite 330
|
||||||
# Boston, MA 02111-1307, USA
|
# Boston, MA 02111-1307, USA
|
||||||
#
|
#
|
||||||
#ident "$Id: Makefile.in,v 1.6 1999/07/03 02:12:51 steve Exp $"
|
#ident "$Id: Makefile.in,v 1.7 1999/07/03 20:50:28 steve Exp $"
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
|
@ -46,9 +46,11 @@ CXXFLAGS = @CXXFLAGS@
|
||||||
LDFLAGS = @LDFLAGS@
|
LDFLAGS = @LDFLAGS@
|
||||||
|
|
||||||
all: ivl
|
all: ivl
|
||||||
|
cd ivlpp ; make all
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm *.o parse.cc parse.cc.output parse.h dep/*.d lexor.cc
|
rm *.o parse.cc parse.cc.output parse.h dep/*.d lexor.cc
|
||||||
|
cd ivlpp ; make clean
|
||||||
|
|
||||||
TT = t-null.o t-verilog.o t-vvm.o t-xnf.o
|
TT = t-null.o t-verilog.o t-vvm.o t-xnf.o
|
||||||
FF = nobufz.o propinit.o sigfold.o stupid.o xnfio.o
|
FF = nobufz.o propinit.o sigfold.o stupid.o xnfio.o
|
||||||
|
|
@ -82,6 +84,7 @@ lexor.cc: lexor.lex
|
||||||
flex -PVL -s -olexor.cc lexor.lex
|
flex -PVL -s -olexor.cc lexor.lex
|
||||||
|
|
||||||
install: all installdirs $(bindir)/ivl
|
install: all installdirs $(bindir)/ivl
|
||||||
|
cd ivlpp ; make install
|
||||||
|
|
||||||
$(bindir)/ivl: ivl
|
$(bindir)/ivl: ivl
|
||||||
$(INSTALL_PROGRAM) ./ivl $(bindir)/ivl
|
$(INSTALL_PROGRAM) ./ivl $(bindir)/ivl
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@ dnl Process this file with autoconf to produce a configure script.
|
||||||
AC_INIT(netlist.h)
|
AC_INIT(netlist.h)
|
||||||
|
|
||||||
dnl Checks for programs.
|
dnl Checks for programs.
|
||||||
|
AC_PROG_CC
|
||||||
AC_PROG_CXX
|
AC_PROG_CXX
|
||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
|
|
||||||
AC_OUTPUT(Makefile vvm/Makefile)
|
AC_OUTPUT(Makefile ivlpp/Makefile vvm/Makefile)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue