Configure for stub.

This commit is contained in:
steve 2006-04-10 03:07:07 +00:00
parent c448b75f2c
commit 6a74a090f0
3 changed files with 31 additions and 1 deletions

View File

@ -9,7 +9,7 @@
echo "Autoconf in root..."
autoconf
for dir in vpip vpi vvp tgt-vvp tgt-fpga libveriuser cadpli
for dir in vpip vpi vvp tgt-vvp tgt-fpga tgt-stub libveriuser cadpli
do
echo "Autoconf in $dir..."
( cd ./$dir ; autoconf --include=.. )

View File

@ -1,3 +1,7 @@
*.cache
stub.tgt
configure
config.log
config.status
Makefile
dep

26
tgt-stub/configure.in Normal file
View File

@ -0,0 +1,26 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(stub.c)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_CANONICAL_HOST
# $host
# Combined check for Microsoft-related bogosities; sets WIN32 if found
AX_WIN32
# may modify CPPFLAGS and CFLAGS
AX_CPP_PRECOMP
# Compiler option for position independent code, needed whan making shared objects.
AX_C_PICFLAG
# linker options when building a shared library
AX_LD_SHAREDLIB_OPTS
AX_CPP_IDENT
AC_OUTPUT(Makefile)