2005-05-17 22:05:45 +00:00
2013-05-04 10:40:05 +00:00
#windows is special as always, but we don't support itanium, and microsoft don't support anything else (not even arm with the nt win32 api)
i f e q ( $( FTE_TARGET ) , w i n 3 2 )
2017-04-18 11:12:17 +00:00
PLUG_NATIVE_EXT = _x86.dll
2021-07-22 08:40:55 +00:00
PLUG_LDFLAGS = -static-libgcc
2024-09-06 16:31:36 +00:00
PLUG_LDFLAGS_ZLIB = -L../engine/libs/mingw-libs -lz
2017-04-18 11:12:17 +00:00
BITS = 32
PLUG_LDFLAGS_DL =
2019-10-18 07:04:38 +00:00
CMAKERULES = $( OUT_DIR) /toolchain_$( FTE_TARGET) .cmake
2013-05-04 10:40:05 +00:00
e n d i f
2021-07-22 08:40:55 +00:00
2013-05-04 10:40:05 +00:00
i f e q ( $( FTE_TARGET ) , w i n 6 4 )
2017-04-18 11:12:17 +00:00
PLUG_NATIVE_EXT = _x64.dll
2021-07-22 08:40:55 +00:00
PLUG_LDFLAGS = -Wl,--support-old-code -static-libgcc
PLUG_LDFLAGS_ZLIB = -L../engine/libs/mingw64-libs -lz
2017-04-18 11:12:17 +00:00
BITS = 64
PLUG_LDFLAGS_DL =
2019-10-18 07:04:38 +00:00
CMAKERULES = $( OUT_DIR) /toolchain_$( FTE_TARGET) .cmake
2013-05-04 10:40:05 +00:00
e n d i f
2019-05-10 02:06:07 +00:00
PLUG_PREFIX = $( OUT_DIR) /fteplug_
2021-01-24 20:54:42 +00:00
i f e q ( $( FTE_TARGET ) , b s d )
2021-07-22 08:40:55 +00:00
PLUG_LDFLAGS_DL?= -ldl -lc
2021-01-24 20:54:42 +00:00
e l s e
2021-07-22 08:40:55 +00:00
PLUG_LDFLAGS_DL?= -ldl -static-libgcc
2021-01-24 20:54:42 +00:00
e n d i f
2017-04-16 09:27:43 +00:00
PLUG_LDFLAGS ?= -L/usr/local/lib -Wl,-R/usr/local/lib -lm
PLUG_LDFLAGS_ZLIB ?= -lz
2013-05-04 10:40:05 +00:00
i f n e q ( $( PLUG_NATIVE_EXT ) , )
2017-04-18 11:12:17 +00:00
#if we're on windows, we'll put our windows-specific hacks here.
PLUG_DEFFILE = plugin.def
PLUG_CFLAGS =
PLUG_CXXFLAGS =
2013-05-04 10:40:05 +00:00
e n d i f
2013-11-21 23:02:28 +00:00
#cygwin uses dll naming.
i f e q ( $( FTE_TARGET ) , c y g w i n )
2017-04-18 11:12:17 +00:00
ifeq ( $( BITS) ,64)
PLUG_DEFFILE = plugin.def
PLUG_NATIVE_EXT = _amd64.dll
endif
ifneq ( $( BITS) ,64)
PLUG_DEFFILE = plugin.def
PLUG_NATIVE_EXT = _x86.dll
endif
2013-11-21 23:02:28 +00:00
e n d i f
2013-05-04 10:40:05 +00:00
#if they're not on windows, we'll try asking the compiler directly
#the check to see if its already set is to avoid asking msvc, which would probably break things.
i f e q ( $( PLUG_NATIVE_EXT ) , )
2017-04-16 09:27:43 +00:00
LIBRESOLV = -lresolv
2017-04-18 11:12:17 +00:00
ifneq ( $( shell echo| $( CC) -E -dM -| grep __amd64__) ,)
#either x32 or x64 ABIs
ifneq ( $( shell echo| $( CC) -E -dM -| grep __ILP32__| grep 1) ,)
PLUG_NATIVE_EXT = _x32.so
else
PLUG_NATIVE_EXT = _amd64.so
endif
2017-04-16 09:27:43 +00:00
endif
2021-07-22 08:40:55 +00:00
2017-04-18 11:12:17 +00:00
ifneq ( $( shell echo| $( CC) -E -dM -| grep __i386__) ,)
PLUG_NATIVE_EXT = _x86.so
endif
2021-07-22 08:40:55 +00:00
2017-04-18 11:12:17 +00:00
ifneq ( $( shell echo| $( CC) -E -dM -| grep __arm__) ,)
#gnueabi[hf]
ifneq ( $( shell echo| $( CC) -E -dM -| grep __SOFTFP__) ,)
PLUG_NATIVE_EXT = _arm.so
else
PLUG_NATIVE_EXT = _armhf.so
endif
endif
2021-07-22 08:40:55 +00:00
2017-04-18 11:12:17 +00:00
ifneq ( $( shell echo| $( CC) -E -dM -| grep __ppc__) ,)
2021-04-14 05:21:04 +00:00
PLUG_NATIVE_EXT = _ppc.so #32bit big-endian
endif
2021-07-22 08:40:55 +00:00
2021-04-14 05:21:04 +00:00
ifneq ( $( shell echo| $( CC) -E -dM -| grep __ppc64__) ,)
PLUG_NATIVE_EXT = _ppc64.so #64bit big-endian
endif
2021-07-22 08:40:55 +00:00
2021-04-14 05:21:04 +00:00
ifneq ( $( shell echo| $( CC) -E -dM -| grep __ppc64le__) ,)
PLUG_NATIVE_EXT = _ppc64le.so #64bit little-endian.
2017-04-16 09:27:43 +00:00
endif
2013-05-04 10:40:05 +00:00
e n d i f
2021-07-22 08:40:55 +00:00
2019-05-10 02:06:07 +00:00
i f e q ( $( FTE_TARGET ) , d r o i d )
#plugins get written to the tmp build dir, to avoid conflicts
2019-06-21 03:59:46 +00:00
PLUG_PREFIX = $( OUT_DIR) /m_droid-$( DROID_ARCH) /libplug_
2019-05-10 02:06:07 +00:00
#don't bother with cpu arch postfixes. they'll be in separate directories anyway.
PLUG_NATIVE_EXT = .so
#libresolv has no public api on android...
LIBRESOLV =
#so we know our target.
PLUG_CFLAGS = -DANDROID
PLUG_CXXFLAGS = -DANDROID
e n d i f
Added sys_openfile console command(and menu option) to web and flatpak(via cmake+dbus) builds, to 'install' packages on sandboxed systems a bit more easily.
Cmake: Add FTE_WERROR option, defaults to true in debug builds and off in release builds (in case future compilers have issues).
Cmake: Pull in libXscreensaver so we don't get interrupted by screensavers when playing demos.
Make: Added `make webcl-rel` for a web build without server bloat (eg for sites focused on demo playback. Yes, this means you XantoM).
fteqcc: Include the decompiler in fteqcc (non-gui) builds ('-d' arg).
fteqcc: Decompiler can now mostly handle hexen2 mods without any unknown opcodes.
Allow ezHud and OpenSSL to be compiled as in-engine plugins, potentially for web and windows ports respectively.
Web: Fix support for ogg vorbis. Add support for voip.
Web: Added basic support for WebXR.
QTV: Don't try seeking on unseekable qtv streams. Don't spam when developer 1 is set.
QTV: add support for some eztv extensions.
MVD: added hack to use ktx's vweps in mvd where mvdsv doesn't bother to record the info.
qwfwd: hack around a hack in qwfwd, allowing it to work again.
recording: favour qwd in single player, instead of mvd.
Protocol: reduce client memory used for precache names. Bump maximum precache counts - some people are just abusive, yes you Orl.
hexen2: add enough clientside protocol compat to play the demo included with h2mp. lacks effects.
in_xflip: restored this setting.
fs_hidesyspaths: new cvar, defaults to enabled so you won't find your username or whatever turning up in screenshots or the like. change it to 0 before debuging stuff eg via 'path'.
gl_overbright_models: Added cvar to match QS.
netchan: Added MTU determination, we'll no longer fail to connect when routers stupidly drop icmp packets.
Win: try a few other versions of xinput too.
CSQC: Added a CSQC_GenerateMaterial function, to give the csqc a chance to generate custom materials.
MenuQC: Added support for the skeletal objects API.
2024-04-09 17:13:59 +00:00
ARCHLIBS = ../engine/libs-$( ARCH)
2013-05-04 10:40:05 +00:00
#fallback
2021-04-14 05:21:04 +00:00
PLUG_NATIVE_EXT ?= .so
2013-05-04 10:40:05 +00:00
PLUG_DEFFILE ?=
2018-12-10 12:06:57 +00:00
PLUG_CFLAGS ?= -fPIC -Wl,--no-undefined -Bsymbolic -fvisibility= hidden -static-libgcc
PLUG_CXXFLAGS ?= -fPIC -Wl,--no-undefined -Bsymbolic -fvisibility= hidden -static-libgcc
2018-08-04 19:00:19 +00:00
PLUG_CMAKE ?= -DCMAKE_POSITION_INDEPENDENT_CODE= ON -DCMAKE_C_COMPILER= $( CC) -DCMAKE_CXX_COMPILER= $( CXX)
2017-04-16 09:27:43 +00:00
PLUG_LDFLAGS_ZLIB ?=
ARCH := $( shell $( CC) -dumpmachine)
Added sys_openfile console command(and menu option) to web and flatpak(via cmake+dbus) builds, to 'install' packages on sandboxed systems a bit more easily.
Cmake: Add FTE_WERROR option, defaults to true in debug builds and off in release builds (in case future compilers have issues).
Cmake: Pull in libXscreensaver so we don't get interrupted by screensavers when playing demos.
Make: Added `make webcl-rel` for a web build without server bloat (eg for sites focused on demo playback. Yes, this means you XantoM).
fteqcc: Include the decompiler in fteqcc (non-gui) builds ('-d' arg).
fteqcc: Decompiler can now mostly handle hexen2 mods without any unknown opcodes.
Allow ezHud and OpenSSL to be compiled as in-engine plugins, potentially for web and windows ports respectively.
Web: Fix support for ogg vorbis. Add support for voip.
Web: Added basic support for WebXR.
QTV: Don't try seeking on unseekable qtv streams. Don't spam when developer 1 is set.
QTV: add support for some eztv extensions.
MVD: added hack to use ktx's vweps in mvd where mvdsv doesn't bother to record the info.
qwfwd: hack around a hack in qwfwd, allowing it to work again.
recording: favour qwd in single player, instead of mvd.
Protocol: reduce client memory used for precache names. Bump maximum precache counts - some people are just abusive, yes you Orl.
hexen2: add enough clientside protocol compat to play the demo included with h2mp. lacks effects.
in_xflip: restored this setting.
fs_hidesyspaths: new cvar, defaults to enabled so you won't find your username or whatever turning up in screenshots or the like. change it to 0 before debuging stuff eg via 'path'.
gl_overbright_models: Added cvar to match QS.
netchan: Added MTU determination, we'll no longer fail to connect when routers stupidly drop icmp packets.
Win: try a few other versions of xinput too.
CSQC: Added a CSQC_GenerateMaterial function, to give the csqc a chance to generate custom materials.
MenuQC: Added support for the skeletal objects API.
2024-04-09 17:13:59 +00:00
PLUG_LDFLAGS := -L$( ARCHLIBS) $( PLUG_LDFLAGS)
PLUG_CFLAGS := -I$( ARCHLIBS) $( PLUG_CFLAGS)
PLUG_CXXFLAGS := -I$( ARCHLIBS) $( PLUG_CXXFLAGS)
2013-05-04 10:40:05 +00:00
2021-10-05 05:05:22 +00:00
#$1 is the plugin name, $2 is its filename, $3 is title, $4 is description
d e f i n e E M B E D M E T A
@echo " {\\n package fteplug_ $1 \\n ver \" ${ SVN_VERSION } \"\\n category Plugins\\n title \" $3 \"\\n gamedir \"\"\\n desc \" $4 \"\\n} " | zip -q -9 -fz- $2 .metazip -
@cat $2 .metazip >> $2
@zip -q -A $2
@rm $2 .metazip
e n d e f
2019-09-04 07:59:40 +00:00
#legacy build rule, now equivelent to all
native : all
2005-05-17 22:05:45 +00:00
2016-07-12 00:40:13 +00:00
clean : ezscript -clean qi -clean hud -clean irc -clean
2007-10-05 09:59:27 +00:00
2019-09-04 07:59:40 +00:00
.PHONY : all native distclean clean
2005-05-17 22:05:45 +00:00
help :
@-echo make a subdirectory
2020-05-14 15:50:26 +00:00
######################################
2013-05-04 10:40:05 +00:00
#small script to download+install avformat for windows cross compiles.
#linux users are expected to have the library installed locally already. If your version is too old or missing, run the following command to install it (to /usr/local), then delete the gz and directory.
#wget http://ffmpeg.org/releases/ffmpeg-1.2.tar.gz && cd tar xvfz ffmpeg-1.2.tar.gz && cd ffmpeg-1.2/ && ./configure --disable-yasm --enable-shared && make && sudo make install
#we use ffmpeg's version for some reason, as opposed to libav. not sure what the differences are meant to be, but libav seemed to have non-depricated functions defined, docs that say to use them, and these functions missing.
2021-07-22 08:40:55 +00:00
2018-07-05 16:39:01 +00:00
AV_VER = ffmpeg-4.0
2020-12-25 02:17:23 +00:00
2017-05-10 02:57:34 +00:00
i f e q ( $( findstring win ,$ ( FTE_TARGET ) ) , w i n )
2021-07-22 08:40:55 +00:00
AV_BASE = $( abspath $( OUT_DIR) /../fte_libav_$( AV_VER) ) /
2020-12-25 02:17:23 +00:00
e l s e
2021-07-22 08:40:55 +00:00
ifeq ( $( FTE_TARGET) ,bsd)
AV_BASE = /usr/local/include/
else
AV_BASE = /usr/include/ffmpeg/
endif
2017-05-10 02:57:34 +00:00
e n d i f
i f n e q ( $( AV_BASE ) , )
2021-07-22 08:40:55 +00:00
AV_DEP = $( AV_BASE) libavformat/avformat.h
AV_CFLAGS = -I$( AV_BASE)
AV_LDFLAGS = -L$( AV_BASE) lib$( BITS) -lavcodec -lavformat -lavutil -lswscale
2017-05-10 02:57:34 +00:00
e l s e
2021-07-22 08:40:55 +00:00
AV_LDFLAGS = -lavcodec -lavformat -lavutil -lswscale
2017-05-10 02:57:34 +00:00
e n d i f
2013-05-04 10:40:05 +00:00
2021-01-24 20:54:42 +00:00
i f e q ( $( FTE_TARGET ) , b s d )
2021-07-22 08:40:55 +00:00
AV_LDFLAGS += -lc
2021-01-24 20:54:42 +00:00
e n d i f
2019-09-04 07:59:40 +00:00
AVPLUG_OBJS = avplug/avaudio.c avplug/avencode.c avplug/avdecode.c plugin.c
2021-07-22 08:40:55 +00:00
i f e q ( $( findstring win ,$ ( FTE_TARGET ) ) , w i n )
ifeq ( 0,1)
AV_ARCHIVEEXT = .z7
AV_EXTRACT = 7z e -y
else
AV_ARCHIVEEXT = .zip
AV_EXTRACT = unzip -ju
endif
AV_W32_DEV = $( AV_VER) -win32-dev$( AV_ARCHIVEEXT)
AV_W64_DEV = $( AV_VER) -win64-dev$( AV_ARCHIVEEXT)
AV_W32_BIN = $( AV_VER) -win32-shared$( AV_ARCHIVEEXT)
AV_W64_BIN = $( AV_VER) -win64-shared$( AV_ARCHIVEEXT)
AV_URL32_DEV = https://archive.org/download/zeranoe/win32/dev/$( AV_W32_DEV)
AV_URL64_DEV = https://archive.org/download/zeranoe/win64/dev/$( AV_W64_DEV)
AV_URL32_BIN = https://archive.org/download/zeranoe/win32/shared/$( AV_W32_BIN)
AV_URL64_BIN = https://archive.org/download/zeranoe/win64/shared/$( AV_W64_BIN)
AV_PRE32_DEV = $( AV_VER) -win32-dev/
AV_PRE64_DEV = $( AV_VER) -win64-dev/
AV_PRE32_BIN = $( AV_VER) -win32-shared/
AV_PRE64_BIN = $( AV_VER) -win64-shared/
ifeq ( $( FTE_TARGET) ,win32)
FFMPEG_ZIP = $( AV_BASE) /$( AV_VER) -x86.zip
#NATIVE_PLUGINS+=ffmpeg
endif
ifeq ( $( FTE_TARGET) ,win64)
FFMPEG_ZIP = $( AV_BASE) /$( AV_VER) -x64.zip
#NATIVE_PLUGINS+=ffmpeg
endif
2016-07-12 00:40:13 +00:00
2018-04-06 15:32:18 +00:00
$(AV_BASE)$(AV_VER)-win32.zip :
mkdir -p $( AV_BASE)
cd $( AV_BASE) && wget -N $( AV_URL32_BIN)
mkdir -p $( AV_BASE) bin32 && cd $( AV_BASE) bin32 && $( AV_EXTRACT) ../$( AV_W32_BIN) $( AV_PRE32_BIN) bin/avcodec-*.dll $( AV_PRE32_BIN) bin/avutil-*.dll $( AV_PRE32_BIN) bin/swresample-*.dll $( AV_PRE32_BIN) bin/avformat-*.dll $( AV_PRE32_BIN) bin/swscale-*.dll && cd -
zip -j9 $@ $( AV_BASE) bin32/*.dll
$(AV_BASE)$(AV_VER)-win64.zip :
mkdir -p $( AV_BASE)
cd $( AV_BASE) && wget -N $( AV_URL64_BIN)
mkdir -p $( AV_BASE) bin64 && cd $( AV_BASE) bin64 && $( AV_EXTRACT) ../$( AV_W64_BIN) $( AV_PRE64_BIN) bin/avcodec-*.dll $( AV_PRE64_BIN) bin/avutil-*.dll $( AV_PRE64_BIN) bin/swresample-*.dll $( AV_PRE64_BIN) bin/avformat-*.dll $( AV_PRE64_BIN) bin/swscale-*.dll && cd -
zip -j9 $@ $( AV_BASE) bin64/*.dll
2021-07-22 08:40:55 +00:00
ifneq ( $( FFMPEG_ZIP) ,)
$( FFMPEG_ZIP) : $( AV_BASE) $( AV_VER) -$( FTE_TARGET) .zip
cp $( AV_BASE) $( AV_VER) -$( FTE_TARGET) .zip $@
endif
2018-04-06 15:32:18 +00:00
2016-07-12 00:40:13 +00:00
$(AV_BASE)libavformat/avformat.h :
mkdir -p $( AV_BASE)
2018-04-06 15:32:18 +00:00
cd $( AV_BASE) && wget -N $( AV_URL32_DEV)
mkdir -p $( AV_BASE) libavformat && cd $( AV_BASE) libavformat && $( AV_EXTRACT) ../$( AV_W32_DEV) $( AV_PRE32_DEV) include/libavformat/* && cd -
mkdir -p $( AV_BASE) libavcodec && cd $( AV_BASE) libavcodec && $( AV_EXTRACT) ../$( AV_W32_DEV) $( AV_PRE32_DEV) include/libavcodec/* && cd -
mkdir -p $( AV_BASE) libavutil && cd $( AV_BASE) libavutil && $( AV_EXTRACT) ../$( AV_W32_DEV) $( AV_PRE32_DEV) include/libavutil/* && cd -
mkdir -p $( AV_BASE) libswscale && cd $( AV_BASE) libswscale && $( AV_EXTRACT) ../$( AV_W32_DEV) $( AV_PRE32_DEV) include/libswscale/* && cd -
mkdir -p $( AV_BASE) lib32 && cd $( AV_BASE) lib32 && $( AV_EXTRACT) ../$( AV_W32_DEV) $( AV_PRE32_DEV) lib/avformat.lib $( AV_PRE32_DEV) lib/avcodec.lib $( AV_PRE32_DEV) lib/avutil.lib $( AV_PRE32_DEV) lib/swscale.lib && cd -
cd $( AV_BASE) && wget -N $( AV_URL64_DEV)
mkdir -p $( AV_BASE) lib64 && cd $( AV_BASE) lib64 && $( AV_EXTRACT) ../$( AV_W64_DEV) $( AV_PRE64_DEV) lib/avformat.lib $( AV_PRE64_DEV) lib/avcodec.lib $( AV_PRE64_DEV) lib/avutil.lib $( AV_PRE64_DEV) lib/swscale.lib && cd -
2017-08-12 19:32:09 +00:00
2016-07-12 00:40:13 +00:00
distclean :
rm $( AV_BASE) libavformat/avformat.h
2018-04-06 15:32:18 +00:00
rm $( AV_BASE) $( AV_VER) -win32.zip
rm $( AV_BASE) $( AV_VER) -win64.zip
2017-08-12 19:32:09 +00:00
2021-07-22 08:40:55 +00:00
$(PLUG_PREFIX)ffmpeg$(PLUG_NATIVE_EXT) : $( AV_DEP ) $( AVPLUG_OBJS )
2017-05-10 02:57:34 +00:00
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -s -o $@ -shared $( PLUG_CFLAGS) $( AV_CFLAGS) $( AVPLUG_OBJS) $( PLUG_DEFFILE) $( PLUG_LDFLAGS) $( AV_LDFLAGS)
2021-10-05 05:05:22 +00:00
$( call EMBEDMETA,ffmpeg,$@ ,FFMPEG Video Decoding Plugin,Provides support for more audio formats as well as video playback and better capture support.)
2021-06-21 13:44:05 +00:00
2021-07-22 08:40:55 +00:00
e l s e # NIX
$(PLUG_PREFIX)ffmpeg$(PLUG_NATIVE_EXT) :
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -s -o $@ -shared $( PLUG_CFLAGS) $( AV_CFLAGS) $( AVPLUG_OBJS) $( PLUG_DEFFILE) $( PLUG_LDFLAGS) $( AV_LDFLAGS)
2021-10-05 05:05:22 +00:00
$( call EMBEDMETA,ffmpeg,$@ ,FFMPEG Video Decoding Plugin,Provides support for more audio formats as well as video playback and better capture support.)
2021-06-21 13:44:05 +00:00
e n d i f
2020-05-14 15:50:26 +00:00
######################################
2016-07-12 00:40:13 +00:00
2020-05-14 15:50:26 +00:00
######################################
2016-07-12 00:40:13 +00:00
#small script for ode
#FIXME: ode fails to compile under cygwin
2017-05-10 02:57:34 +00:00
#FIXME: race condition if you try compiling debug+release at the same time, as this makefile is invoked twice by the engine's one
2016-07-12 00:40:13 +00:00
ODE_ARCH = $( FTE_TARGET)
i f e q ( $( ODE_ARCH ) , )
ODE_ARCH = unknown
e n d i f
2024-07-21 02:54:39 +00:00
ODE_VER = 0.16.5
2016-07-12 00:40:13 +00:00
ODE_URL = https://bitbucket.org/odedevs/ode/downloads/ode-$( ODE_VER) .tar.gz
2024-07-21 02:54:39 +00:00
ODE_BASE = $( ARCHLIBS) /ode-$( ODE_VER) _$( ODE_ARCH) /
2016-07-12 00:40:13 +00:00
ODE_LIB = $( ODE_BASE) ode-$( ODE_VER) /ode/src/.libs/libode.a
$(OUT_DIR)/../ode-$(ODE_VER).tar.gz :
mkdir -p $( ODE_BASE)
2017-08-12 19:32:09 +00:00
cd $( OUT_DIR) /.. && wget -N $( ODE_URL)
2016-07-12 00:40:13 +00:00
$(ODE_LIB) : $( OUT_DIR ) /../ode -$( ODE_VER ) .tar .gz
mkdir -p $( ODE_BASE) && cd $( ODE_BASE) && tar xvfz $<
2024-07-21 02:54:39 +00:00
cd $( ODE_BASE) ode-$( ODE_VER) / && ./bootstrap && ./configure --enable-double-precision --disable-demos --without-x --with-pic CC = " $( CC) $( PLUG_CXXFLAGS) " CXX = " $( CC) $( PLUG_CXXFLAGS) " --host= ` $( CC) -dumpmachine` && $( MAKE)
2016-07-12 00:40:13 +00:00
2019-09-04 07:59:40 +00:00
ODE_FILES = ../engine/common/com_phys_ode.c ../engine/common/mathlib.c plugin.c $( ODE_LIB)
2019-05-10 02:06:07 +00:00
$(PLUG_PREFIX)ode$(PLUG_NATIVE_EXT) : $( ODE_FILES )
2016-07-15 12:26:24 +00:00
$( CC) -flto -s $( BASE_CFLAGS) $( CFLAGS) -Os -DFTEPLUGIN -DODE_STATIC -o $@ -shared $( PLUG_CFLAGS) -I$( ODE_BASE) ode-$( ODE_VER) /include $( ODE_FILES) $( PLUG_DEFFILE) $( PLUG_LDFLAGS) -static-libgcc ` $( CC) -print-file-name= libstdc++.a` -lpthread
2021-10-05 05:05:22 +00:00
$( call EMBEDMETA,ode,$@ ,ODE Physics,Provides Rigid Body Physics behaviours.)
2016-07-12 00:40:13 +00:00
#NATIVE_PLUGINS+=ode
2020-05-14 15:50:26 +00:00
######################################
2016-07-12 00:40:13 +00:00
2020-05-14 15:50:26 +00:00
######################################
2019-10-18 07:04:38 +00:00
i f n e q ( $( CMAKERULES ) , )
BULLET_CFLAGS += -static-libstdc++
PLUG_CMAKE += -DCMAKE_TOOLCHAIN_FILE= " $( CMAKERULES) "
$(CMAKERULES) :
echo "set(CMAKE_SYSTEM_NAME Windows)" > $@
echo " set(TOOLCHAIN_PREFIX ` $( CC) -dumpmachine`) " >> $@
# cross compilers to use for C, C++ and Fortran
echo " set(CMAKE_C_COMPILER $( CC) ) " >> $@
echo " set(CMAKE_CXX_COMPILER $( CXX) ) " >> $@
echo " set(CMAKE_RC_COMPILER $$ {TOOLCHAIN_PREFIX}-windres) " >> $@
# target environment on the build host system
echo " set(CMAKE_FIND_ROOT_PATH /usr/ $$ {TOOLCHAIN_PREFIX}) " >> $@
# modify default behavior of FIND_XXX() commands
echo "set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)" >> $@
echo "set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)" >> $@
echo "set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)" >> $@
e n d i f
2016-07-12 00:40:13 +00:00
2018-08-04 19:00:19 +00:00
BULLET_VER = 2.87
2016-07-12 00:40:13 +00:00
BULLET_URL = https://github.com/bulletphysics/bullet3/archive/$( BULLET_VER) .tar.gz
2018-08-04 19:00:19 +00:00
BULLET_BASE = $( OUT_DIR) /../bullet3-$( BULLET_VER) _$( FTE_TARGET) /
BULLET_LIBS = \
2019-10-18 07:04:38 +00:00
$( BULLET_BASE) bullet3-$( BULLET_VER) /lib/libBulletDynamics.a \
$( BULLET_BASE) bullet3-$( BULLET_VER) /lib/libBulletCollision.a \
$( BULLET_BASE) bullet3-$( BULLET_VER) /lib/libLinearMath.a
BULLET_CFLAGS += -I$( BULLET_BASE) bullet3-$( BULLET_VER) /src
2016-07-12 00:40:13 +00:00
$(OUT_DIR)/../bullet3-$(BULLET_VER).tar.gz :
mkdir -p $( BULLET_BASE)
2017-08-12 19:32:09 +00:00
wget -N $( BULLET_URL) -O $@
2018-08-04 19:00:19 +00:00
2019-10-18 07:04:38 +00:00
BULLET_LIB = $( BULLET_BASE) bullet3-$( BULLET_VER) /lib/libLinearMath.a
$(BULLET_BASE)bullet3-$(BULLET_VER)/lib/libBulletDynamics.a $(BULLET_BASE)bullet3-$(BULLET_VER)/lib/libBulletCollision.a : $( BULLET_LIB )
$(BULLET_LIB) : $( OUT_DIR ) /../bullet 3-$( BULLET_VER ) .tar .gz $( CMAKERULES )
2016-07-12 00:40:13 +00:00
mkdir -p $( BULLET_BASE) && cd $( BULLET_BASE) && tar xvfz $<
2019-10-18 07:04:38 +00:00
rm $( BULLET_BASE) bullet3-$( BULLET_VER) /build3/cmake/FindPythonLibs.cmake #cmake is a pile of shite and fails at cross compiling. oh well, we didn't want any python stuff anyway.
2021-07-24 14:24:46 +00:00
cd $( BULLET_BASE) bullet3-$( BULLET_VER) / && cmake $( PLUG_CMAKE) -DBUILD_DEMOS:BOOL= OFF -DBUILD_EXTRAS:BOOL= OFF -DLIBRARY_OUTPUT_PATH= $( BULLET_BASE) bullet3-$( BULLET_VER) /lib . && $( MAKE) LinearMath BulletDynamics BulletCollision
2018-08-04 19:00:19 +00:00
#./configure --enable-double-precision --disable-demos --without-x CXX="$(CC)" CFLAGS="$(PLUG_CFLAGS)" CXXFLAGS="$(PLUG_CXXFLAGS)" --host=`$(CC) -dumpmachine` && make
2016-07-12 00:40:13 +00:00
2019-09-04 07:59:40 +00:00
$(PLUG_PREFIX)bullet$(PLUG_NATIVE_EXT) : bullet /bulletplug .cpp plugin .c $( BULLET_LIBS )
2019-10-01 22:32:06 +00:00
$( CXX) $( BASE_CXXFLAGS) $( CFLAGS) -DFTEPLUGIN -o $@ -shared $( PLUG_CFLAGS) $^ $( PLUG_DEFFILE) $( PLUG_LDFLAGS) $( BULLET_CFLAGS)
2021-10-05 05:05:22 +00:00
$( call EMBEDMETA,bullet,$@ ,Bullet Physics Plugin,Provides Rigid Body Physics.)
2016-07-12 00:40:13 +00:00
#NATIVE_PLUGINS+=bullet
2020-05-14 15:50:26 +00:00
######################################
2016-07-12 00:40:13 +00:00
2020-05-14 15:50:26 +00:00
######################################
2017-09-21 05:18:22 +00:00
#Regarding CEF Versions: Cef 2526 is reportedly the most recent _WORKING_ version of libcef. Later versions have screwed webgl etc, and are just generally unstable.
#However, that's now impossible to get hold of since the old cefbuilds server went down. New builds are hosted by spotify and they're all randomly broken, so we might as well just use whatever seems fairly recent.
#WARNING: Changing CEF_VER requires updating downloadables.php etc
2016-07-17 18:41:01 +00:00
i f e q ( $( FTE_TARGET ) , w i n 3 2 )
2021-11-03 20:30:48 +00:00
CEF_ARCH = windows32
2016-07-17 18:41:01 +00:00
e n d i f
i f e q ( $( FTE_TARGET ) , w i n 6 4 )
2021-11-03 20:30:48 +00:00
CEF_ARCH = windows64
2016-07-17 18:41:01 +00:00
e n d i f
2017-09-21 05:18:22 +00:00
i f e q ( $( FTE_TARGET ) , l i n u x 3 2 )
2021-11-03 20:30:48 +00:00
CEF_ARCH = linux32
2017-09-21 05:18:22 +00:00
e n d i f
i f e q ( $( FTE_TARGET ) , l i n u x 6 4 )
2021-11-03 20:30:48 +00:00
CEF_ARCH = linux64
2017-09-21 05:18:22 +00:00
e n d i f
#ifeq ($(FTE_TARGET),macosx64)
2021-11-03 20:30:48 +00:00
#CEF_ARCH=macosx64
2017-09-21 05:18:22 +00:00
#endif
2021-11-03 20:30:48 +00:00
CEF_VER = 95.7.14+g9f72f35+chromium-95.0.4638.69
2017-09-21 05:18:22 +00:00
CEF_NAME = cef_binary_$( CEF_VER) _$( CEF_ARCH) _minimal
2021-11-03 20:30:48 +00:00
CEF_URL = https://cef-builds.spotifycdn.com/cef_binary_$( CEF_VER) _$( CEF_ARCH) _minimal.tar.bz2
2017-09-21 05:18:22 +00:00
i f n e q ( $( CEF_ARCH ) , )
cef/$(CEF_NAME)/include/cef_version.h :
cd cef && wget -N $( CEF_URL)
cd cef && tar -xjf $( CEF_NAME) .tar.bz2
cef/$(CEF_NAME)/rel.zip : cef /$( CEF_NAME ) /include /cef_version .h
cd cef/$( CEF_NAME) /Release && zip -9 ../rel.zip *.dll *.bin
cd cef/$( CEF_NAME) /Resources && zip -r9 ../rel.zip .
$(OUT_DIR)/cef_$(CEF_VER).zip : cef /$( CEF_NAME ) /rel .zip
cp cef/$( CEF_NAME) /rel.zip $@
2019-09-04 07:59:40 +00:00
CEF_SOURCES = cef/cef.c plugin.c
2019-05-10 02:06:07 +00:00
$(PLUG_PREFIX)cef$(PLUG_NATIVE_EXT) : $( CEF_SOURCES ) $( OUT_DIR ) /cef_ $( CEF_VER ) .zip cef /$( CEF_NAME ) /include /cef_version .h
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -o $( PLUG_PREFIX) cef$( PLUG_NATIVE_EXT) -shared $( PLUG_CFLAGS) -Icef/$( CEF_NAME) $( CEF_SOURCES) $( PLUG_DEFFILE) $( PLUG_LDFLAGS) -Wl,-rpath,. $( PLUG_LDFLAGS_DL)
2021-10-05 05:05:22 +00:00
$( call EMBEDMETA,cef,$@ ,libcef Browser Plugin,This plugin provides support for an in-game web browser.)
2016-07-12 00:40:13 +00:00
#NATIVE_PLUGINS+=cef
2016-07-17 18:41:01 +00:00
e l s e
2019-05-10 02:06:07 +00:00
.PHONEY : $( PLUG_PREFIX ) cef $( PLUG_NATIVE_EXT )
$(PLUG_PREFIX)cef$(PLUG_NATIVE_EXT) :
2021-11-03 20:30:48 +00:00
@echo cef plugin not supported on this arch - $( FTE_TARGET) - $( CEF_ARCH)
2016-07-17 18:41:01 +00:00
e n d i f
2022-03-08 05:31:34 +00:00
######################################
#quake3
2022-03-08 05:33:52 +00:00
BOTLIBFILES = quake3/botlib/be_aas_bspq3.c \
quake3/botlib/be_aas_cluster.c \
quake3/botlib/be_aas_debug.c \
quake3/botlib/be_aas_entity.c \
quake3/botlib/be_aas_file.c \
quake3/botlib/be_aas_main.c \
quake3/botlib/be_aas_move.c \
quake3/botlib/be_aas_optimize.c \
quake3/botlib/be_aas_reach.c \
quake3/botlib/be_aas_routealt.c \
quake3/botlib/be_aas_route.c \
quake3/botlib/be_aas_sample.c \
quake3/botlib/be_ai_char.c \
quake3/botlib/be_ai_chat.c \
quake3/botlib/be_ai_gen.c \
quake3/botlib/be_ai_goal.c \
quake3/botlib/be_ai_move.c \
quake3/botlib/be_ai_weap.c \
quake3/botlib/be_ai_weight.c \
quake3/botlib/be_ea.c \
quake3/botlib/be_interface.c \
quake3/botlib/l_crc.c \
quake3/botlib/l_libvar.c \
quake3/botlib/l_log.c \
quake3/botlib/l_memory.c \
quake3/botlib/l_precomp.c \
quake3/botlib/l_script.c \
quake3/botlib/l_struct.c \
quake3/botlib/standalone.c
2022-03-08 05:31:34 +00:00
QUAKE3FILES = $( BOTLIBFILES) \
plugin.c \
2022-03-08 05:33:52 +00:00
quake3/clq3_cg.c \
quake3/clq3_ui.c \
quake3/clq3_parse.c \
quake3/svq3_game.c \
quake3/q3common.c
2022-03-08 05:31:34 +00:00
$(PLUG_PREFIX)quake3$(PLUG_NATIVE_EXT) : ${QUAKE 3FILES }
2022-06-20 04:54:54 +00:00
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -DMULTITHREAD -DBOTLIB -DBOTLIB_STATIC -o $@ -shared $( PLUG_CFLAGS) $^ $( PLUG_DEFFILE) $( PLUG_LDFLAGS_ZLIB) $( PLUG_LDFLAGS)
2022-03-08 05:31:34 +00:00
$( call EMBEDMETA,quake3,$@ ,Quake3 Compat,Quake3 Gamecode Compatibility)
NATIVE_PLUGINS += quake3
2020-05-14 15:50:26 +00:00
######################################
#for custom/private plugins...
- i n c l u d e M a k e f i l e . p r i v a t e
#small plugins with simpler build rules...
2022-01-16 18:42:04 +00:00
######################################
#Mostly for a joke.
2020-05-14 15:50:26 +00:00
$(PLUG_PREFIX)mpq$(PLUG_NATIVE_EXT) : mpq /fs_mpq .c mpq /blast .c plugin .c
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -o $@ -shared $( PLUG_CFLAGS) -Impq $^ $( PLUG_DEFFILE) $( PLUG_LDFLAGS_ZLIB) $( PLUG_LDFLAGS)
2022-01-16 18:42:04 +00:00
$( call EMBEDMETA,mpq,$@ ,MPQ Archives,Provides support for Blizzard' s .mpq archive format used in eg Diablo 2)
#NATIVE_PLUGINS+=mpq
######################################
2020-05-14 15:50:26 +00:00
2022-01-16 18:42:04 +00:00
######################################
# XMPP aka Jabber chat-protocol support. requires manual account configuration.
2021-04-14 05:21:04 +00:00
$(PLUG_PREFIX)xmpp$(PLUG_NATIVE_EXT) : jabber /jabberclient .c jabber /jingle .c jabber /sift .c jabber /xml .c plugin .c ../engine /common /sha 1.c ../engine /common /sha 2.c emailnot /md 5.c
2020-05-14 15:50:26 +00:00
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -o $@ -shared $( PLUG_CFLAGS) -Ijabber $^ $( PLUG_DEFFILE) $( PLUG_LDFLAGS) $( LIBRESOLV)
2022-01-16 18:42:04 +00:00
$( call EMBEDMETA,xmpp,$@ ,XMPP Chat,A slightly more modern alternative to IRC. Requires manual account configuration.)
2020-05-14 15:50:26 +00:00
NATIVE_PLUGINS += xmpp
2022-01-16 18:42:04 +00:00
######################################
2020-05-14 15:50:26 +00:00
2022-01-16 18:42:04 +00:00
######################################
# Quake Injector plugin.
2020-05-14 15:50:26 +00:00
$(PLUG_PREFIX)qi$(PLUG_NATIVE_EXT) : qi /qi .c jabber /xml .c plugin .c
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -o $@ -shared $( PLUG_CFLAGS) -Ijabber $^ $( PLUG_DEFFILE) $( PLUG_LDFLAGS)
2022-01-16 18:42:04 +00:00
$( call EMBEDMETA,qi,$@ ,Quake-Injector Plugin,Provides easy access to the Quaddicted mod database.)
2020-05-14 15:50:26 +00:00
NATIVE_PLUGINS += qi
2022-01-16 18:42:04 +00:00
######################################
2020-05-14 15:50:26 +00:00
2022-01-16 18:42:04 +00:00
######################################
# Internet Relay Chat (IRC) plugin.
2019-09-04 07:59:40 +00:00
$(PLUG_PREFIX)irc$(PLUG_NATIVE_EXT) : irc /ircclient .c plugin .c
2016-07-12 00:40:13 +00:00
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -o $@ -shared $( PLUG_CFLAGS) -Iirc $^ $( PLUG_DEFFILE) $( PLUG_LDFLAGS)
2022-01-16 18:42:04 +00:00
$( call EMBEDMETA,irc,$@ ,IRC Chat,Internet Relay Chat plugin - requires extra server/nick/channel configuration)
2016-07-12 00:40:13 +00:00
NATIVE_PLUGINS += irc
2022-01-16 18:42:04 +00:00
######################################
2013-06-23 18:43:59 +00:00
2022-01-16 18:42:04 +00:00
######################################
#OpenXR plugin, for use with VR headsets.
Added sys_openfile console command(and menu option) to web and flatpak(via cmake+dbus) builds, to 'install' packages on sandboxed systems a bit more easily.
Cmake: Add FTE_WERROR option, defaults to true in debug builds and off in release builds (in case future compilers have issues).
Cmake: Pull in libXscreensaver so we don't get interrupted by screensavers when playing demos.
Make: Added `make webcl-rel` for a web build without server bloat (eg for sites focused on demo playback. Yes, this means you XantoM).
fteqcc: Include the decompiler in fteqcc (non-gui) builds ('-d' arg).
fteqcc: Decompiler can now mostly handle hexen2 mods without any unknown opcodes.
Allow ezHud and OpenSSL to be compiled as in-engine plugins, potentially for web and windows ports respectively.
Web: Fix support for ogg vorbis. Add support for voip.
Web: Added basic support for WebXR.
QTV: Don't try seeking on unseekable qtv streams. Don't spam when developer 1 is set.
QTV: add support for some eztv extensions.
MVD: added hack to use ktx's vweps in mvd where mvdsv doesn't bother to record the info.
qwfwd: hack around a hack in qwfwd, allowing it to work again.
recording: favour qwd in single player, instead of mvd.
Protocol: reduce client memory used for precache names. Bump maximum precache counts - some people are just abusive, yes you Orl.
hexen2: add enough clientside protocol compat to play the demo included with h2mp. lacks effects.
in_xflip: restored this setting.
fs_hidesyspaths: new cvar, defaults to enabled so you won't find your username or whatever turning up in screenshots or the like. change it to 0 before debuging stuff eg via 'path'.
gl_overbright_models: Added cvar to match QS.
netchan: Added MTU determination, we'll no longer fail to connect when routers stupidly drop icmp packets.
Win: try a few other versions of xinput too.
CSQC: Added a CSQC_GenerateMaterial function, to give the csqc a chance to generate custom materials.
MenuQC: Added support for the skeletal objects API.
2024-04-09 17:13:59 +00:00
#the tar.gz has a stupid name
OPENXRVER = 1.0.33
$(ARCHLIBS)/openxr/openxr.h :
cd $( ARCHLIBS) /.. && ( test -f release-$( OPENXRVER) .tar.gz || wget https://github.com/KhronosGroup/OpenXR-SDK/archive/refs/tags/release-$( OPENXRVER) .tar.gz)
cd $( ARCHLIBS) && tar -xvzf ../release-$( OPENXRVER) .tar.gz --strip-components= 2 OpenXR-SDK-release-$( OPENXRVER) /include/openxr/
$(PLUG_PREFIX)openxr$(PLUG_NATIVE_EXT) : openxr .c plugin .c $( ARCHLIBS ) /openxr /openxr .h
2021-06-21 13:44:05 +00:00
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -o $@ -shared $( PLUG_CFLAGS) $^ $( PLUG_DEFFILE) $( PLUG_LDFLAGS) -DXR_NO_PROTOTYPES ` $( PKGCONFIG) --cflags openxr` -DGLQUAKE -DVKQUAKE -DD3D11QUAKE
2022-01-16 18:42:04 +00:00
$( call EMBEDMETA,openxr,$@ ,OpenXR Support,Enables the use of Virtual Reality headsets and inputs.)
2021-04-14 05:21:04 +00:00
NATIVE_PLUGINS += openxr
2022-01-16 18:42:04 +00:00
######################################
2020-05-14 15:50:26 +00:00
2022-01-16 18:42:04 +00:00
######################################
2015-06-03 16:42:37 +00:00
#for compat with ezquake
2019-09-04 07:59:40 +00:00
$(PLUG_PREFIX)ezhud$(PLUG_NATIVE_EXT) : ezhud /ezquakeisms .c ezhud /hud .c ezhud /hud_common .c ezhud /hud_editor .c plugin .c
2016-07-12 00:40:13 +00:00
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -o $@ -shared $( PLUG_CFLAGS) -Iezhud $^ $( PLUG_DEFFILE) $( PLUG_LDFLAGS)
2021-10-05 05:05:22 +00:00
$( call EMBEDMETA,ezhud,$@ ,EzHud Plugin,Provides compat with ezquake' s hud scripts.)
2016-07-12 00:40:13 +00:00
NATIVE_PLUGINS += ezhud
2022-01-16 18:42:04 +00:00
######################################
2015-06-03 16:42:37 +00:00
2022-01-16 18:42:04 +00:00
######################################
2020-05-14 15:50:26 +00:00
#not really relevant now that gltf was made an internal plugin
2022-02-19 20:48:40 +00:00
$(PLUG_PREFIX)models$(PLUG_NATIVE_EXT) : models /gltf .c models /exportiqm .c models /models .c plugin .c ../engine /common /json .c
2019-02-24 17:58:28 +00:00
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -o $@ -shared $( PLUG_CFLAGS) -Imodels $^ $( PLUG_DEFFILE) $( PLUG_LDFLAGS)
2021-10-05 05:05:22 +00:00
$( call EMBEDMETA,models,$@ ,Models Plugin,Kinda redundant now that the engine has gltf2 loading)
2020-05-14 15:50:26 +00:00
#NATIVE_PLUGINS+=models
2022-01-16 18:42:04 +00:00
######################################
2020-05-14 15:50:26 +00:00
2022-01-16 18:42:04 +00:00
######################################
2021-06-21 13:44:05 +00:00
#Openssl crypto plugin, to replace microsoft's shoddy dtls implementation. could also be useful on the BSDs, yay system components?
2022-01-16 18:41:53 +00:00
i f e q ( $( FTE_TARGET ) , w i n 3 2 )
2022-01-17 09:12:56 +00:00
OSSL_ARCH = mingw
2022-01-16 18:41:53 +00:00
e n d i f
i f e q ( $( FTE_TARGET ) , w i n 6 4 )
OSSL_ARCH = mingw64
e n d i f
#statically link openssl on the above systems (instead of depending on system libs)
i f n e q ( $( OSSL_ARCH ) , )
OSSL_VERSION = 3.0.1
#../engine/libs-$(ARCH)/openssl-$(OSSL_VERSION).tar.gz:
../engine/openssl-$(OSSL_VERSION).tar.gz :
wget -O $@ -N https://github.com/openssl/openssl/archive/refs/tags/openssl-$( OSSL_VERSION) .tar.gz
2022-01-17 09:12:56 +00:00
$(ARCHLIBS)/openssl-openssl-$(OSSL_VERSION)/libssl.a $(ARCHLIBS)/openssl-openssl-$(OSSL_VERSION)/libcrypto.a : ../engine /openssl -$( OSSL_VERSION ) .tar .gz
2022-01-16 18:41:53 +00:00
( cd $( ARCHLIBS) && tar xvfz ../openssl-$( OSSL_VERSION) .tar.gz)
( cd $( ARCHLIBS) /openssl-openssl-$( OSSL_VERSION) && CFLAGS = -Os ./Configure --release no-filenames no-legacy no-shared no-stdio no-asm $( OSSL_ARCH) --cross-compile-prefix= $( ARCH) - && $( MAKE) )
2022-01-17 09:12:56 +00:00
$(PLUG_PREFIX)openssl$(PLUG_NATIVE_EXT) : $( ARCHLIBS ) /openssl -openssl -$( OSSL_VERSION ) /libssl .a $( ARCHLIBS ) /openssl -openssl -$( OSSL_VERSION ) /libcrypto .a
2022-01-16 18:41:53 +00:00
#we should be using openssl's no-sock option, but that also disables core dtls functionality (despite us using our own BIOs).
OPENSSL_LDCFLAGS = -I$( ARCHLIBS) /openssl-openssl-$( OSSL_VERSION) /include -L$( ARCHLIBS) /openssl-openssl-$( OSSL_VERSION) -lssl -lcrypto -lws2_32
OPENSSL_AVAILABLE = 1
e n d i f
OPENSSL_LDCFLAGS ?= ` $( PKGCONFIG) --libs --cflags openssl`
OPENSSL_AVAILABLE ?= $( shell $( OPENSSLPKGPATH) $( PKGCONFIG) --atleast-version= 3.0.0 openssl && echo 1)
2021-06-21 13:44:05 +00:00
$(PLUG_PREFIX)openssl$(PLUG_NATIVE_EXT) : net_ssl_openssl .c plugin .c
2022-01-16 18:41:53 +00:00
$( CC) -s $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -o $@ -shared $( PLUG_CFLAGS) $^ $( PLUG_DEFFILE) $( PLUG_LDFLAGS) $( OPENSSL_LDCFLAGS)
2021-10-05 05:05:22 +00:00
$( call EMBEDMETA,openssl,$@ ,OpenSSL,Provides OpenSSL support for dtls/tls/https support. The crypto library that is actually used is controlled via the tls_provider cvar.)
2022-01-16 18:41:53 +00:00
#OpenSSL 3.0.0 is apache2 and thus GPL3-compatible, earlier versions are NOT GPL-compatible at all, so only enable it if its okay.
#(you can still force it, but don't distribute)
i f e q ( $( OPENSSL_AVAILABLE ) , 1 )
NATIVE_PLUGINS += openssl
e n d i f
2022-01-16 18:42:04 +00:00
######################################
2021-06-21 13:44:05 +00:00
2022-01-16 18:42:04 +00:00
######################################
2021-11-08 08:46:40 +00:00
#for compat with half-life 2's file formats
2021-11-08 08:47:16 +00:00
$(PLUG_PREFIX)hl2$(PLUG_NATIVE_EXT) : hl 2/fs_vpk .c hl 2/img_vtf .c hl 2/mod_hl 2.c hl 2/mat_vmt .c hl 2/mod_vbsp .c hl 2/hl 2.c plugin .c
2021-11-08 08:46:40 +00:00
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -DMULTITHREAD -o $@ -shared $( PLUG_CFLAGS) $^ $( PLUG_DEFFILE) $( PLUG_LDFLAGS)
2021-11-10 01:36:22 +00:00
$( call EMBEDMETA,hl2,$@ ,HL2 Formats,Provides support for various formats used by Valve' s Source engine.)
NATIVE_PLUGINS += hl2
2022-01-16 18:42:04 +00:00
######################################
2020-05-14 15:50:26 +00:00
2024-04-06 00:05:33 +00:00
######################################
#for compat with cod's file formats
$(PLUG_PREFIX)cod$(PLUG_NATIVE_EXT) : cod /codmod .c cod /codbsp .c cod /codmat .c cod /codiwi .c plugin .c
$( CC) $( BASE_CFLAGS) $( CFLAGS) -DFTEPLUGIN -DMULTITHREAD -o $@ -shared $( PLUG_CFLAGS) $^ $( PLUG_DEFFILE) $( PLUG_LDFLAGS)
$( call EMBEDMETA,cod,$@ ,CoD Formats,Provides support for various formats used by Call of Duty.)
NATIVE_PLUGINS += cod
######################################
2020-05-14 15:50:26 +00:00
2019-02-24 17:58:28 +00:00
2019-09-04 07:59:40 +00:00
all : $( foreach FOO ,$ ( NATIVE_PLUGINS ) , $ ( PLUG_PREFIX ) $ ( FOO ) $ ( PLUG_NATIVE_EXT ) )