mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-28 14:42:38 +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
|
@ -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 =
|
||||
|
||||
|
@ -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