# # 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.13 2007/02/06 05:07:31 steve Exp $" # # SHELL = /bin/sh VERSION = 0.0 prefix = @prefix@ exec_prefix = @exec_prefix@ srcdir = @srcdir@ VPATH = $(srcdir) bindir = @bindir@ libdir = @libdir@ includedir = $(prefix)/include vpidir = @libdir@/ivl/@vpidir1@ 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: ifeq (@enable_vvp32@,yes) vpidir32 = $(libdir)/ivl/@vpidir2@ ALL32 = all32 INSTALL32 = install32 UNINSTALL32 = uninstall32 include $(srcdir)/enable_vvp32.mk endif 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 (@MING32@,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 $(vpidir)/cadpli.vpl installdirs: ../mkinstalldirs $(srcdir)/../mkinstalldirs $(vpidir) uninstall: $(UNINSTALL32) rm -f $(vpidir)/cadpli.vpl uninstall32: ifeq (@enable_vvp32@,yes) include $(srcdir)/enable_vvp32.mk endif -include $(patsubst %.o, dep/%.d, $O)