mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-14 12:35:22 +02:00
26 lines
547 B
Text
26 lines
547 B
Text
![]() |
dnl Process this file with autoconf to produce a configure script.
|
||
|
|
||
|
AC_PREREQ(2.59)
|
||
|
AC_INIT($(projectName), 1.0)
|
||
|
AC_PROG_CC
|
||
|
|
||
|
AC_CANONICAL_SYSTEM
|
||
|
|
||
|
dnl Initialize automake
|
||
|
AM_INIT_AUTOMAKE
|
||
|
|
||
|
dnl this allows us specify individual liking flags for each target
|
||
|
AM_PROG_CC_C_O
|
||
|
|
||
|
dnl Initialize Libtool
|
||
|
LT_INIT
|
||
|
|
||
|
dnl Check if Libtool is present
|
||
|
dnl Libtool is used for building share libraries
|
||
|
AC_PROG_LIBTOOL
|
||
|
|
||
|
AC_CONFIG_FILES(Makefile
|
||
|
exampleProgram/Makefile
|
||
|
$(libName)/Makefile
|
||
|
include/Makefile)
|
||
|
AC_OUTPUT
|