1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 04:25:21 +02:00
cdt/build/org.eclipse.cdt.autotools.ui/templates/projecttemplates/AutotoolsSharedLibraryProject/configure.ac

26 lines
No EOL
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