From dad72a6bf82c2f6d9f857499711827e425e1e279 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Tue, 27 Feb 2007 17:51:29 +0100 Subject: [PATCH] use more customary lowercase filename for configure script --- FAQ | 2 +- Makefile | 8 ++++---- README | 8 ++++---- Configure => configure | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) rename Configure => configure (96%) diff --git a/FAQ b/FAQ index 9b7fcce..f526e91 100644 --- 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. diff --git a/Makefile b/Makefile index ba18908..48062e9 100644 --- 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 9972758..53d78b1 100644 --- 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 diff --git a/Configure b/configure similarity index 96% rename from Configure rename to configure index 2ea6057..c3a63dc 100755 --- 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 : 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 -- 2.30.0