*** empty log message ***
authorroot <root>
Sun, 12 Dec 2004 06:39:20 +0000 (06:39 +0000)
committerroot <root>
Sun, 12 Dec 2004 06:39:20 +0000 (06:39 +0000)
genac [new file with mode: 0644]
src/gcc-Wall [deleted file]

diff --git a/genac b/genac
new file mode 100644 (file)
index 0000000..b23cadf
--- /dev/null
+++ b/genac
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+autoheader autoconf/configure.in >autoconf/config.h.in
+autoconf -I autoconf autoconf/configure.in >configure
+
diff --git a/src/gcc-Wall b/src/gcc-Wall
deleted file mode 100644 (file)
index 9c5ccc1..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-# gcc -Wall plus other important warnings not included in -Wall
-
-for arg
-do
-    case $arg in
-       -O*) Wuninitialized=-Wuninitialized;;  # only makes sense with `-O'
-    esac
-done
-
-exec gcc \
-       -Wall $Wuninitialized \
-       -Wwrite-strings \
-       -Wcast-qual \
-       -Wbad-function-cast \
-       -Wpointer-arith \
-       -Wstrict-prototypes \
-       -Wmissing-prototypes \
-       -Wmissing-declarations \
-       -Wnested-externs \
-       -Wtraditional \
-       -Wconversion \
-       -Wcomment \
-       -Wcast-align \
-       -Winline \
-       -Wshadow \
-       -Wredundant-decls \
-       -Wid-clash-31 \
-       "$@"
-
-#    -Wall implies:
-#      -Wimplicit
-#      -Wreturn-type
-#      -Wunused
-#      -Wswitch
-#      -Wformat
-#      -Wchar-subscripts
-#      -Wparentheses
-#      -Wmissing-braces
-------------------------------------------------------------------------------