-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.ac
38 lines (32 loc) · 1009 Bytes
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
# ___ _ ___ _____ _______ _____ ___.__.______ | Swiss Army Project
# / _/_| |_\_ \ \__ \\_ __ \/ < | |\____ \ | Project in C/C++ Language
# || |_ _| || / __ \| | \/ Y Y \___ || |_> > |
# ||_ |_| _|| (____ /__| |__|_| / ____|| __/ | @author Luís Ferreira
# \__\ /__/ \/ \/\/ |__| | @license GNU Public License v3
#
# Copyright (c) 2016 - Luís Ferreira. All right reserved
# More information in: https://github.com/ljmf00/ (Github Page)
AC_PREREQ([2.59])
AC_INIT([swissap], [0.01], [lsferreira169@gmail.com])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
AC_PROG_CC
AC_PROG_CXX
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_RANLIB
AC_PROG_LIBTOOL
AM_PROG_AR
AC_HEADER_STDBOOL
AC_C_CONST
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
Makefile
src/core/Makefile
src/lib/Makefile
])
AC_OUTPUT