mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-24 21:01:17 +00:00
Don't try to build QW if we don't have UDP.
This commit is contained in:
parent
eab5b194a5
commit
475651495e
1 changed files with 9 additions and 4 deletions
13
Makefile.in
13
Makefile.in
|
@ -1,5 +1,11 @@
|
|||
SUBDIRS = qw_client qw_server uquake
|
||||
SRC_DIR = @srcdir@
|
||||
HAVE_UDP = @HAVE_UDP@
|
||||
|
||||
ifeq ($(HAVE_UDP),yes)
|
||||
SUBDIRS = qw_client qw_server uquake
|
||||
else
|
||||
SUBDIRS = uquake
|
||||
endif
|
||||
|
||||
DESTDIR =
|
||||
|
||||
|
@ -27,8 +33,8 @@ clean-autoconf mrproper: distclean
|
|||
@for dir in $(SUBDIRS); do \
|
||||
$(MAKE) -C $$dir $@ || exit; \
|
||||
done
|
||||
|
||||
|
||||
|
||||
|
||||
changelog:
|
||||
@echo "CVS will ask for a passwd, press enter"
|
||||
cvs -d$(ANONCVS) login
|
||||
|
@ -52,4 +58,3 @@ qw_server/Makefile: qw_server/Makefile.in configure
|
|||
uquake/Makefile: uquake/Makefile.in configure
|
||||
./configure
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue