configure autotools cpp

Solutions on MaxInterview for configure autotools cpp by the best coders in the world

showing results for - "configure autotools cpp"
Nico
07 Jan 2019
1
2#                                               -*- Autoconf -*-                                                                                                                    
3# Process this file with autoconf to produce a configure script.                                                                                                                    
4                                                                                                                                                                    
5AC_PREREQ([2.68])                                                                                                                                                                   
6AC_INIT([mainfix], [0.00.00], [j.bokma@rug.nl])                                                                                                                                     
7AM_INIT_AUTOMAKE([1.10 -Wall no-define foreign])                                                                                                                                    
8AC_CONFIG_SRCDIR([src/main.cc])                                                                                                                                                     
9AC_CONFIG_HEADERS([config.h])
10
11# Checks for programs.
12AC_PROG_CXX
13AC_PROG_CC
14
15# Checks for libraries.
16
17# Checks for header files.
18
19# Checks for typedefs, structures, and compiler characteristics.
20AC_HEADER_STDBOOL
21AC_C_INLINE
22AC_TYPE_SIZE_T
23
24# Checks for library functions.
25
26AC_CONFIG_FILES([Makefile])
27AC_OUTPUT
28	  
similar questions
queries leading to this page
configure autotools cpp