Don't try to build QW if we don't have UDP.

This commit is contained in:
Marcus Sundberg 2000-01-07 01:13:47 +00:00
parent eab5b194a5
commit 475651495e

View file

@ -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