timport - autohell - a simple replacement for GNU autoconf
 (HTM) git clone git://parazyd.org/autohell.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 6847ec3cac5c4ed991d1dcf9ec92d7cc23a9993f
 (DIR) parent 577952982047ace39544c8a4f1e5b1e8e05e674a
 (HTM) Author: parazyd <parazyd@dyne.org>
       Date:   Wed,  1 Feb 2017 15:44:49 +0100
       
       import
       
       Diffstat:
         A Makefile.in                         |       7 +++++++
         A README.md                           |      12 ++++++++++++
         A autogen.sh                          |       5 +++++
         A configure.in                        |       8 ++++++++
       
       4 files changed, 32 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/Makefile.in b/Makefile.in
       t@@ -0,0 +1,7 @@
       +        @echo so much
       +        @echo we love gnu
       +all:
       +
       +# and stop using autohell. you only need makefiles
       +# write a Makefile yourself that corresponds to the actual sources
       +# example Makefile
 (DIR) diff --git a/README.md b/README.md
       t@@ -0,0 +1,12 @@
       +autohell
       +========
       +
       +simple replacement for GNU Autotools
       +
       +# usage
       +
       +just drop these in your sources, and execute autogen.sh
       +
       +you also need to provide a `Makefile.in` file, which is a normal,
       +coherent makefile written upside-down. an example is provided in these
       +sources
 (DIR) diff --git a/autogen.sh b/autogen.sh
       t@@ -0,0 +1,5 @@
       +#!/bin/sh
       +
       +#sleep 10
       +tac configure.in > configure
       +chmod +x configure
 (DIR) diff --git a/configure.in b/configure.in
       t@@ -0,0 +1,8 @@
       +done
       +        sleep 0.05
       +        printf "checking for %s... yes\\n" "$i"
       +for i in /usr/include/*; do
       +
       +tac Makefile.in > Makefile
       +
       +#!/bin/sh