mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 06:31:56 +00:00
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.
This commit is contained in:
parent
b5c66ceb00
commit
8da551b601
1 changed files with 8 additions and 8 deletions
16
Makefile.in
16
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
|
||||
|
|
Loading…
Reference in a new issue