X-Git-Url: http://git.shiar.net/netris.git/blobdiff_plain/e7c197505ec760eb3754f3b6d1fbbc33c66a9316..ff288926227d35bc8e129d510aba2dc1d748b8bc:/Makefile diff --git a/Makefile b/Makefile index ba18908..0baead2 100644 --- 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