90 lines
2.1 KiB
Makefile
90 lines
2.1 KiB
Makefile
#
|
|
# 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
|
|
#
|
|
SHELL = /bin/sh
|
|
|
|
VERSION = 0.9.devel
|
|
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = $(srcdir)
|
|
|
|
bindir = @bindir@
|
|
libdir = @libdir@
|
|
includedir = $(prefix)/include
|
|
|
|
vpidir = @libdir@/ivl
|
|
|
|
CC = @CC@
|
|
INSTALL = @INSTALL@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
CPPFLAGS = @ident_support@ -I$(srcdir) -I$(srcdir)/.. -I.. @CPPFLAGS@ @DEFS@ @PICFLAG@
|
|
CFLAGS = -Wall @CFLAGS@
|
|
LDFLAGS = @LDFLAGS@
|
|
|
|
SHARED = @shared@
|
|
|
|
all:
|
|
|
|
all: dep cadpli.vpl $(ALL32)
|
|
|
|
# No specific check operations.
|
|
check: all
|
|
|
|
dep:
|
|
mkdir dep
|
|
|
|
%.o: %.c
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) -MD -c $<
|
|
mv $*.d dep
|
|
|
|
O = cadpli.o
|
|
|
|
SYSTEM_VPI_LDFLAGS = -L../vvp -lvpi
|
|
ifeq (@MINGW32@,yes)
|
|
SYSTEM_VPI_LDFLAGS += @EXTRALIBS@
|
|
endif
|
|
|
|
cadpli.vpl: $O ../vvp/libvpi.a ../libveriuser/libveriuser.o
|
|
$(CC) @shared@ -o $@ $O ../libveriuser/libveriuser.o $(SYSTEM_VPI_LDFLAGS)
|
|
|
|
clean:
|
|
rm -rf *.o dep cadpli.vpl bin32
|
|
|
|
distclean: clean
|
|
rm -f Makefile config.status config.log config.cache
|
|
|
|
install: all installdirs $(vpidir)/cadpli.vpl $(INSTALL32)
|
|
|
|
$(vpidir)/cadpli.vpl: ./cadpli.vpl
|
|
$(INSTALL_PROGRAM) ./cadpli.vpl $(DESTDIR)$(vpidir)/cadpli.vpl
|
|
|
|
installdirs: ../mkinstalldirs
|
|
$(srcdir)/../mkinstalldirs $(DESTDIR)$(vpidir)
|
|
|
|
uninstall: $(UNINSTALL32)
|
|
rm -f $(DESTDIR)$(vpidir)/cadpli.vpl
|
|
|
|
uninstall32:
|
|
|
|
-include $(patsubst %.o, dep/%.d, $O)
|