1
0
mirror of https://github.com/albfan/bash-ini-parser.git synced 2025-11-24 23:21:07 +03:00

Add continuous integration

This commit is contained in:
albfan
2016-08-30 14:51:29 +02:00
parent c6a35fc28b
commit 739196e824
32 changed files with 743 additions and 2974 deletions

23
configure.ac Normal file
View File

@@ -0,0 +1,23 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.68])
AC_INIT([bash-ini-parser], [1.0], [albertofanjul@gmail.com])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign 1.11])
# Checks for programs.
AC_PROG_INSTALL
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([Makefile
t/Makefile])
AC_REQUIRE_AUX_FILE([tap-driver.sh])
AC_OUTPUT