Skip to content
Snippets Groups Projects
Commit d939fbdd authored by Jonathan Schöbel's avatar Jonathan Schöbel
Browse files

setup Autotools

parent a6ced91a
Branches
Tags
No related merge requests found
## Process this file with automake to produce Makefile.in
SUBDIRS = src
ACLOCAL_AMFLAGS = --install -I build-macro
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([SeFHT], [0.9], [jonathan@xn--schbel-yxa.info])
AC_CONFIG_SRCDIR([src/main.c])
AC_CONFIG_HEADERS([src/config.h])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([build-macro])
AM_INIT_AUTOMAKE([foreign -Wall -Werror subdir-objects])
# Checks for programs.
AC_PROG_CC
PKG_CHECK_MODULES([CHECK], [check >= 0.9.4])
# Checks for libraries.
# Checks for header files.
AC_CHECK_HEADER([stdio.h])
AC_CHECK_HEADER([stdlib.h])
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
# Makefiles
AC_CONFIG_FILES([Makefile
src/Makefile])
AC_OUTPUT
......@@ -45,7 +45,7 @@ external_dirs=
[build-menu]
NF_00_LB=_Make
NF_00_CM=make
NF_00_WD=build
NF_00_WD=%p/build
NF_01_LB=Make (eigenes _Target)...
NF_01_CM=
NF_01_WD=
......@@ -53,8 +53,12 @@ NF_03_LB=
NF_03_CM=
NF_03_WD=
EX_00_LB=_Ausführen
EX_00_CM=./src/a.out
EX_00_WD=build
EX_00_CM=./src/sefht.fcgi
EX_00_WD=%p/build
EX_01_LB=
EX_01_CM=
EX_01_WD=
CFT_00_LB=_Compile
CFT_00_CM=make
CFT_00_WD=%p/build
filetypes=C;
## Process this file with automake to produce Makefile.in
AM_CFLAGS = -Wall -Wextra
bin_PROGRAMS = sefht.fcgi
sefht_fcgi_SOURCES =
sefht_fcgi_SOURCES += main.c
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment