]> sourceware.org Git - automake.git/commitdiff
Initial revision
authorDavid J. MacKenzie <djm@gnu.org>
Mon, 19 Sep 1994 13:58:36 +0000 (13:58 +0000)
committerDavid J. MacKenzie <djm@gnu.org>
Mon, 19 Sep 1994 13:58:36 +0000 (13:58 +0000)
automake.in [new file with mode: 0755]

diff --git a/automake.in b/automake.in
new file mode 100755 (executable)
index 0000000..02ac6cd
--- /dev/null
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+status=0
+
+for makefile
+do
+  if test ! -f ${makefile}.am; then
+    echo "automake: ${makefile}.am: No such honkin' file"
+    status=1
+    continue
+  fi
+
+  exec 4> ${makefile}.in
+
+done
This page took 0.026335 seconds and 5 git commands to generate.