mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-09 10:52:14 +00:00
75 lines
1.3 KiB
Makefile
75 lines
1.3 KiB
Makefile
#
|
|
# Makefile for feature flags.
|
|
#
|
|
|
|
passthru_opts+=\
|
|
NONET NO_IPV6 NOHW NOMD5 NOPOSTPROCESSING\
|
|
MOBJCONSISTANCY PACKETDROP ZDEBUG\
|
|
HAVE_MINIUPNPC\
|
|
|
|
# build with debugging information
|
|
ifdef DEBUGMODE
|
|
PACKETDROP=1
|
|
opts+=-DPARANOIA -DRANGECHECK
|
|
endif
|
|
|
|
ifndef NOHW
|
|
opts+=-DHWRENDER
|
|
sources+=$(call List,hardware/Sourcefile)
|
|
endif
|
|
|
|
ifndef NOASM
|
|
ifndef NONX86
|
|
sources+=tmap.nas tmap_mmx.nas
|
|
opts+=-DUSEASM
|
|
endif
|
|
endif
|
|
|
|
ifndef NOMD5
|
|
sources+=md5.c
|
|
endif
|
|
|
|
ifndef NOZLIB
|
|
ifndef NOPNG
|
|
ifdef PNG_PKGCONFIG
|
|
$(eval $(call Use_pkg_config,PNG_PKGCONFIG))
|
|
else
|
|
PNG_CONFIG?=$(call Prefix,libpng-config)
|
|
$(eval $(call Configure,PNG,$(PNG_CONFIG) \
|
|
$(if $(PNG_STATIC),--static),,--ldflags))
|
|
endif
|
|
ifdef LINUX
|
|
opts+=-D_LARGEFILE64_SOURCE
|
|
endif
|
|
opts+=-DHAVE_PNG
|
|
sources+=apng.c
|
|
endif
|
|
endif
|
|
|
|
ifndef NONET
|
|
ifndef NOCURL
|
|
CURLCONFIG?=curl-config
|
|
$(eval $(call Configure,CURL,$(CURLCONFIG)))
|
|
opts+=-DHAVE_CURL
|
|
endif
|
|
endif
|
|
|
|
ifdef HAVE_MINIUPNPC
|
|
libs+=-lminiupnpc
|
|
endif
|
|
|
|
# (Valgrind is a memory debugger.)
|
|
ifdef VALGRIND
|
|
VALGRIND_PKGCONFIG?=valgrind
|
|
$(eval $(call Use_pkg_config,VALGRIND))
|
|
ZDEBUG=1
|
|
opts+=-DHAVE_VALGRIND
|
|
endif
|
|
|
|
default_packages:=\
|
|
GME/libgme/LIBGME\
|
|
OPENMPT/libopenmpt/LIBOPENMPT\
|
|
ZLIB/zlib\
|
|
|
|
$(foreach p,$(default_packages),\
|
|
$(eval $(call Check_pkg_config,$(p))))
|