iverilog/tgt-vvp/Makefile.in

114 lines
3.1 KiB
Makefile
Raw Normal View History

2001-03-19 02:20:46 +01: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.
#
# 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.26 2007/02/06 05:07:32 steve Exp $"
2001-03-19 02:20:46 +01:00
#
#
SHELL = /bin/sh
suffix = @install_suffix@
2001-03-19 02:20:46 +01:00
prefix = @prefix@
exec_prefix = @exec_prefix@
srcdir = @srcdir@
VPATH = $(srcdir)
bindir = @bindir@
libdir = @libdir@
includedir = $(prefix)/include
CC = @CC@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
CPPFLAGS = -I. -I.. -I$(srcdir)/.. @CPPFLAGS@ @DEFS@ @PICFLAG@
CFLAGS = -Wall @CFLAGS@
2001-03-19 02:20:46 +01:00
LDFLAGS = @LDFLAGS@
all: dep vvp.tgt vvp.conf vvp-s.conf
dep:
mkdir dep
2001-03-19 02:20:46 +01:00
%.o: %.c
2004-02-10 20:25:00 +01:00
$(CC) $(CPPFLAGS) $(CFLAGS) -MD -c $< -o $*.o
2001-03-19 02:20:46 +01:00
mv $*.d dep
O = vvp.o draw_mux.o draw_net_input.o draw_switch.o draw_ufunc.o draw_vpi.o \
eval_bool.o eval_expr.o \
eval_real.o modpath.o vector.o \
vvp_process.o vvp_scope.o
2001-03-19 02:20:46 +01:00
2001-05-20 17:09:39 +02:00
ifeq (@WIN32@,yes)
2001-03-19 02:20:46 +01:00
TGTLDFLAGS=-L.. -livl
TGTDEPLIBS=../libivl.a
else
TGTLDFLAGS=
TGTDEPLIBS=
endif
vvp.tgt: $O $(TGTDEPLIBS)
$(CC) @shared@ -o $@ $O $(TGTLDFLAGS)
vvp.conf: $(srcdir)/vvp.conf.in Makefile
echo 'flag:VVP_EXECUTABLE=$(bindir)/vvp$(suffix)' | cat $(srcdir)/vvp.conf.in - > vvp.conf
vvp-s.conf: $(srcdir)/vvp-s.conf.in Makefile
echo 'flag:VVP_EXECUTABLE=$(bindir)/vvp$(suffix)' | cat $(srcdir)/vvp-s.conf.in - > vvp-s.conf
Makefile: $(srcdir)/Makefile.in ../config.status
cd ..; ./config.status --file=tgt-vvp/$@
stamp-vvp_config-h: $(srcdir)/vvp_config.h.in ../config.status
@rm -f $@
cd ..; ./config.status --header=tgt-vvp/vvp_config.h
vvp_config.h: stamp-vvp_config-h
2001-03-25 07:59:46 +02:00
2001-03-19 02:20:46 +01:00
clean:
rm -rf *.o dep vvp.tgt vvp.conf vvp-s.conf
2001-03-19 02:20:46 +01:00
2001-05-20 19:13:27 +02:00
distclean: clean
rm -f Makefile config.log
rm -f stamp-vvp_config-h vvp_config.h
2001-05-20 19:13:27 +02:00
2001-03-25 07:59:46 +02:00
check: all
install: all installdirs $(libdir)/ivl$(suffix)/vvp.tgt $(libdir)/ivl$(suffix)/vvp.conf $(libdir)/ivl$(suffix)/vvp-s.conf
2001-03-19 02:20:46 +01:00
$(libdir)/ivl$(suffix)/vvp.tgt: ./vvp.tgt
$(INSTALL_PROGRAM) ./vvp.tgt "$(DESTDIR)$(libdir)/ivl$(suffix)/vvp.tgt"
2001-03-19 02:20:46 +01:00
$(libdir)/ivl$(suffix)/vvp.conf: vvp.conf
$(INSTALL_DATA) $< "$(DESTDIR)$(libdir)/ivl$(suffix)/vvp.conf"
2003-11-01 05:22:50 +01:00
$(libdir)/ivl$(suffix)/vvp-s.conf: vvp-s.conf
$(INSTALL_DATA) $< "$(DESTDIR)$(libdir)/ivl$(suffix)/vvp-s.conf"
2003-11-01 05:22:50 +01:00
2001-03-19 02:20:46 +01:00
installdirs: $(srcdir)/../mkinstalldirs
$(srcdir)/../mkinstalldirs "$(DESTDIR)$(libdir)/ivl$(suffix)"
2001-03-19 02:20:46 +01:00
uninstall:
rm -f "$(DESTDIR)$(libdir)/ivl$(suffix)/vvp.tgt" "$(DESTDIR)$(libdir)/ivl$(suffix)/vvp.conf" "$(DESTDIR)$(libdir)/ivl$(suffix)/vvp-s.conf"
2001-03-19 02:20:46 +01:00
-include $(patsubst %.o, dep/%.d, $O)