From 8da551b601d5ba9523e00b976e7670a4b083cab8 Mon Sep 17 00:00:00 2001 From: Nelson Rush Date: Thu, 30 Dec 1999 23:50:31 +0000 Subject: [PATCH] i've added cesarb's fix: top-level Makefile has @src_dir@, right thing is @srcdir@, and some tabs seem tohave been converted to spaces. --- Makefile.in | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile.in b/Makefile.in index 6f92011..9dd2bba 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,9 +1,9 @@ SUBDIRS = qw_client qw_server uquake -SRC_DIR = @src_dir@ +SRC_DIR = @srcdir@ all: @for dir in $(SUBDIRS); do \ - $(MAKE) -C $$dir $@ || exit; \ + $(MAKE) -C $$dir $@ || exit; \ done distclean: @@ -14,7 +14,7 @@ distclean: %: @for dir in $(SUBDIRS); do \ - $(MAKE) -C $$dir $@ || exit; \ + $(MAKE) -C $$dir $@ || exit; \ done @@ -22,17 +22,17 @@ distclean: # source directory ifeq ($(SRC_DIR),.) configure: configure.in - autoconf + autoconf Makefile: Makefile.in configure - ./configure + ./configure qw_client/Makefile: qw_client/Makefile.in configure - ./configure + ./configure qw_server/Makefile: qw_server/Makefile.in configure - ./configure + ./configure uquake/Makefile: uquake/Makefile.in configure - ./configure + ./configure endif