iverilog/tgt-fpga/configure.in

31 lines
593 B
Plaintext
Raw Permalink Normal View History

2001-08-28 06:14:20 +02:00
dnl Process this file with autoconf to produce a configure script.
AC_INIT(fpga.c)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
2006-05-08 06:33:35 +02:00
AC_CHECK_PROGS(MAN,man,none)
AC_CHECK_PROGS(PS2PDF,ps2pdf,none)
2001-08-28 06:14:20 +02:00
AC_CANONICAL_HOST
# $host
AX_ENABLE_SUFFIX
2004-02-15 04:17:36 +01:00
# Combined check for Microsoft-related bogosities; sets WIN32 if found
AX_WIN32
2001-09-15 20:27:04 +02:00
AC_CHECK_HEADERS(malloc.h)
2001-08-28 06:14:20 +02:00
2004-09-28 00:34:10 +02:00
# may modify CPPFLAGS and CFLAGS
AX_CPP_PRECOMP
2007-02-26 20:51:38 +01:00
# Compiler option for position independent code, needed when making shared objects.
2004-09-28 00:34:10 +02:00
AX_C_PICFLAG
2001-08-28 06:14:20 +02:00
2004-09-28 00:34:10 +02:00
# linker options when building a shared library
AX_LD_SHAREDLIB_OPTS
2001-08-28 06:14:20 +02:00
AC_OUTPUT(Makefile)