use spaces for alignment
[netris.git] / Makefile
index ba1890894ed93fc857987994a5709bbacb33a649..0baead23e60beef2b58d5a8cd1ed4d5238a24a20 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -8,14 +8,14 @@ PROG = netris
 SPROG = netrisserver
 HEADERS = netris.h
 
-SRCS = game.c curses.c board.c util.c inet.c
+SRCS = client.c curses.c board.c util.c inet.c
 SSRCS = server.c util.c
 
 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