mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-29 07:02:08 +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
|
SUBDIRS = qw_client qw_server uquake
|
||||||
SRC_DIR = @src_dir@
|
SRC_DIR = @srcdir@
|
||||||
|
|
||||||
all:
|
all:
|
||||||
@for dir in $(SUBDIRS); do \
|
@for dir in $(SUBDIRS); do \
|
||||||
$(MAKE) -C $$dir $@ || exit; \
|
$(MAKE) -C $$dir $@ || exit; \
|
||||||
done
|
done
|
||||||
|
|
||||||
distclean:
|
distclean:
|
||||||
|
@ -14,7 +14,7 @@ distclean:
|
||||||
|
|
||||||
%:
|
%:
|
||||||
@for dir in $(SUBDIRS); do \
|
@for dir in $(SUBDIRS); do \
|
||||||
$(MAKE) -C $$dir $@ || exit; \
|
$(MAKE) -C $$dir $@ || exit; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,17 +22,17 @@ distclean:
|
||||||
# source directory
|
# source directory
|
||||||
ifeq ($(SRC_DIR),.)
|
ifeq ($(SRC_DIR),.)
|
||||||
configure: configure.in
|
configure: configure.in
|
||||||
autoconf
|
autoconf
|
||||||
|
|
||||||
Makefile: Makefile.in configure
|
Makefile: Makefile.in configure
|
||||||
./configure
|
./configure
|
||||||
|
|
||||||
qw_client/Makefile: qw_client/Makefile.in configure
|
qw_client/Makefile: qw_client/Makefile.in configure
|
||||||
./configure
|
./configure
|
||||||
|
|
||||||
qw_server/Makefile: qw_server/Makefile.in configure
|
qw_server/Makefile: qw_server/Makefile.in configure
|
||||||
./configure
|
./configure
|
||||||
|
|
||||||
uquake/Makefile: uquake/Makefile.in configure
|
uquake/Makefile: uquake/Makefile.in configure
|
||||||
./configure
|
./configure
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue