commit 6847ec3cac5c4ed991d1dcf9ec92d7cc23a9993f
parent 577952982047ace39544c8a4f1e5b1e8e05e674a
Author: parazyd <parazyd@dyne.org>
Date: Wed, 1 Feb 2017 15:44:49 +0100
import
Diffstat:
4 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/Makefile.in b/Makefile.in
@@ -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
diff --git a/README.md b/README.md
@@ -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
diff --git a/autogen.sh b/autogen.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+#sleep 10
+tac configure.in > configure
+chmod +x configure
diff --git a/configure.in b/configure.in
@@ -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