use more customary lowercase filename for configure script
authorMischa POSLAWSKY <netris@shiar.org>
Tue, 27 Feb 2007 16:51:29 +0000 (17:51 +0100)
committerMischa POSLAWSKY <netris@shiar.org>
Tue, 27 Feb 2007 16:51:29 +0000 (17:51 +0100)
FAQ
Makefile
README
configure [moved from Configure with 96% similarity]

diff --git a/FAQ b/FAQ
index 9b7fcce5c7c2623f0a180d1cf829818d1e81cf56..f526e91754a174ee68b3337b162f5d63cee431fc 100644 (file)
--- a/FAQ
+++ b/FAQ
@@ -112,7 +112,7 @@ Answers
 [8] Occasionally when clearing a line, the display jerks, scrolling
     very awkwardly.  How can I fix it?
 
-    You can try running ./Configure with the "--curses-hack" option
+    You can try running ./configure with the "--curses-hack" option
     and recompile.  This utilizes a non-portable hack which will only
     work with certain curses libraries, so it's disabled by default.
 
index ba1890894ed93fc857987994a5709bbacb33a649..48062e93c185b88f58b5ab664824eb486e32e4fa 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ OBJS = $(SRCS:.c=.o)
 SOBJS = $(SSRCS:.c=.o)
 
 DISTFILES = README FAQ INSTALL COPYING TODO CHANGES \
-       Configure Makefile netris.h \
+       configure Makefile netris.h \
        $(SRCS) server.c \
 
 all: Makefile config.h $(PROG) $(SPROG)
@@ -29,9 +29,9 @@ $(SPROG): $(SOBJS)
 .c.o:
        $(CC) $(CFLAGS) -c $<
 
-Makefile config.h: Configure
+Makefile config.h: configure
        @echo "Makefile and/or config.h is out of date"
-       @echo "Run ./Configure now"
+       @echo "Run ./configure now"
        @false
 
 dist: $(DISTFILES)
@@ -42,7 +42,7 @@ dist: $(DISTFILES)
        cp $(DISTFILES) $$dir; \
        chmod 755 $$dir; \
        chmod 644 $$dir/*; \
-       chmod 755 $$dir/Configure; \
+       chmod 755 $$dir/configure; \
        echo "Creating $$dir.tar.gz"; \
        tar -cvzof $$dir.tar.gz $$dir
 
diff --git a/README b/README
index 9972758dba95fd86780e27f00ec562e900c833b1..53d78b1e823b31aac87ee5b5a227d22011250c99 100644 (file)
--- a/README
+++ b/README
@@ -59,14 +59,14 @@ based on.
 
 INSTALLATION
 ============
-1. Run "./Configure" to create a Makefile and config.h appropriate
-   for your system.  If you have problems running Configure with
-   your /bin/sh, try "bash Configure".
+1. Run "./configure" to create a Makefile and config.h appropriate
+   for your system.  If you have problems running configure with
+   your /bin/sh, try "bash configure".
 2. Try "make"
 3. Make sure "./netris" works properly
 4. Copy "./netris" to the appropriate public directory
 
-Try "./Configure -h" for more options
+Try "./configure -h" for more options
 
 
 RUNNING
similarity index 96%
rename from Configure
rename to configure
index 2ea6057a958342a79cddcb4c1947365156ab570c..c3a63dcaf5f40e162fbc7f52895a696982ef3539 100755 (executable)
--- a/Configure
+++ b/configure
@@ -57,7 +57,7 @@ while [ $# -ge 1 ]; do
                        ;;
                *)
                        cat << "END"
-Usage: ./Configure [options...]
+Usage: ./configure [options...]
     -g: Full debugging, no optimization, and full warnings
     -O?: Optimization, no debugging or warnings
     --cc <compiler>: Set the C compiler to use (default "gcc")
@@ -137,7 +137,7 @@ rm -f test.c test.o a.out
 
 echo "Creating config.mak"
 cat > config.mak << END
-### Automatically generated by ./Configure ###
+### Automatically generated by ./configure ###
 
 CC = $CC
 COPT = $COPT
@@ -149,7 +149,7 @@ END
 
 echo "Creating config.h"
 cat << END > config.h
-/*** Automatically generated by ./Configure ***/
+/*** Automatically generated by ./configure ***/
 
 END