v4k-git-backup/MAKE.bat

637 lines
23 KiB
Batchfile
Raw Normal View History

@echo off
setlocal enableDelayedExpansion
cd /d "%~dp0"
rem show help
if "%1"=="-?" goto showhelp
if "%1"=="-h" goto showhelp
if "%1"=="help" (
:showhelp
2023-08-10 21:53:51 +00:00
echo %0 ; compile everything: `make dll dev` alias
echo %0 [help] ; show this screen
echo %0 [docs] ; generate tools/docs/docs.html file
echo %0 [cook] ; cook .zipfiles with tools/cook.ini cookbook
echo %0 [sync] ; sync repo to latest
echo %0 [fwk] ; prepare files for fwk PR
echo %0 [lua] ; execute lua script with v4k
echo %0 [html5] ; build HTML5 demo
echo %0 [web] ; run Python webserver in html5 dir
echo %0 [pull] ; pull changes from 'latest' upstream
echo %0 [git] ; prepare for commit
2023-09-08 12:10:14 +00:00
echo %0 [vps] ; upload the release to VPS
2023-08-10 21:53:51 +00:00
echo %0 [push] ; prepare for commit, stage changes and commit them
echo %0 [tidy] ; clean up temp files
echo %0 [bind] ; generate lua bindings
echo %0 [checkmem] ; check untracked allocators in V4K
echo %0 [split^|join] ; engine/v4k* ^>split^> engine/split/* or engine/split/* ^>join^> engine/v4k*
echo %0 [lua] ; execute lua script with v4k
echo %0 [amalgamation] ; combine engine/v4k* into a single-header file
echo %0 [prep] ; combine split files into a single-header file, ready for use
echo %0 [sln] ; generate a xcode/gmake/ninja/visual studio solution
2023-08-10 14:30:56 +00:00
echo %0 [cl^|tcc^|cc^|gcc^|clang^|clang-cl] [dbg^|dev^|rel] [static^|dll] [nov4k^|nodemos^|editor] [vis] [-- args]
echo cl \
echo tcc ^|
echo cc ^| select compiler. must be accessible in PATH
echo gcc ^| (will be autodetected when no option is provided^)
echo clang ^|
echo clang-cl /
echo dbg \ debug build: [x] ASAN [x] poison [x] asserts [x] profiler [x] symbols [ ] zero optimizations
echo dev ^| develop build: [ ] ASAN [x] poison [x] asserts [x] profiler [x] symbols [*] some optimizations (default^)
echo rel / release build: [ ] ASAN [ ] poison [ ] asserts [ ] profiler [x] symbols (cl,clang-cl only^) [x] many optimizations
2023-08-10 14:30:56 +00:00
echo static \ link v4k as static library
echo dll / link v4k as dynamic library (dll^) (default^)
echo nov4k \ do not compile framework
echo demos ^| do compile demos
echo editor / do compile editor
2023-09-10 16:16:25 +00:00
echo run ^| run compiled .exe
echo vis ^> visualize invokation cmdline.
echo args ^> after `--` separator is found, pass all remaining arguments to compiler as-is
echo.
exit /b
)
rem sync repo to latest
if "%1"=="sync" (
call MAKE.bat tidy
git reset --hard HEAD~1 && git pull
exit /b
)
rem cook asset files
if "%1"=="cook" (
rem generate cooker twice: use multi-threaded version if available (cl). then cook.
2023-08-10 14:30:56 +00:00
rem call tools\tcc tools\cook.c -Iengine engine\v4k.c
rem cl tools\cook.c -Iengine engine\v4k.c
rem cook
tools\cook
exit /b
)
rem generate bindings
2023-08-10 14:30:56 +00:00
if "%1"=="bind" (
rem luajit
2023-08-10 14:30:56 +00:00
tools\luajit tools\luajit_make_bindings.lua > v4k.lua
move /y v4k.lua engine\bind
exit /b
)
2023-08-10 19:52:43 +00:00
if "%1"=="lua" (
pushd engine\bind
luajit "..\..\%2"
popd
exit /b
)
rem generate documentation
if "%1"=="docs" (
rem set symbols...
git describe --tags --abbrev=0 > info.obj
set /p VERSION=<info.obj
git rev-list --count --first-parent HEAD > info.obj
set /p GIT_REVISION=<info.obj
git rev-parse --abbrev-ref HEAD > info.obj
set /p GIT_BRANCH=<info.obj
date /t > info.obj
set /p LAST_MODIFIED=<info.obj
2023-09-08 20:23:54 +00:00
git --no-pager log --pretty="format:[%%h](https://dev.v4.games/v4games/v4k/commit/%%H): %%s (**%%cN**)" > changelog.txt
rem ...and generate docs
2023-08-10 14:30:56 +00:00
cl tools\docs\docs.c engine\v4k.c -Iengine %2
docs engine\v4k.h --excluded=3rd_glad.h,v4k.h,v4k_compat.h, > v4k.html
move /y v4k.html engine\
2023-09-08 20:14:11 +00:00
del changelog.txt
exit /b
)
rem generate single-header distribution
if "%1"=="amalgamation" (
2023-08-10 14:30:56 +00:00
echo // This file is intended to be consumed by a compiler. Do not read. > v4k.h
echo // **Browse to any of the sources in engine/split/ folder instead** >> v4k.h
echo // ---------------------------------------------------------------- >> v4k.h
echo // #define V4K_IMPLEMENTATION early in **one** C file to unroll the >> v4k.h
echo // implementation. The symbol must be defined in a C (not C++^) file>> v4k.h
echo // ---------------------------------------------------------------- >> v4k.h
echo #pragma once >> v4k.h
type engine\split\3rd_font_md.h >> v4k.h
type engine\split\3rd_glad.h >> v4k.h
type engine\v4k.h >> v4k.h
echo #ifdef V4K_IMPLEMENTATION >> v4k.h
echo #define V4K_3RD >> v4k.h
type engine\v4k >> v4k.h
type engine\v4k.c >> v4k.h
echo #endif // V4K_IMPLEMENTATION >> v4k.h
move /y v4k.h engine\joint
exit /b
)
2023-08-10 14:30:56 +00:00
rem generate prior files to a git release
if "%1"=="git" (
rem call make.bat dll
2023-08-14 17:43:07 +00:00
call make.bat prep
call make.bat docs
2023-08-10 14:30:56 +00:00
call make.bat bind
call make.bat amalgamation
call make.bat split
rem rd /q /s engine\split
rem md engine\split
2023-08-10 14:30:56 +00:00
rem move /y v4k_*.? engine\split\
rem move /y 3rd_*.? engine\split\
call make.bat tidy
exit /b
)
2023-08-10 14:30:56 +00:00
if "%1"=="pull" (
2023-08-10 16:26:54 +00:00
git remote add fwk git@github.com:r-lyeh/FWK.git 2>NUL
2023-08-10 16:21:32 +00:00
git fetch fwk
2023-08-11 18:59:46 +00:00
git merge -Xrename-threshold=50 --allow-unrelated-histories fwk/main
2023-08-10 14:30:56 +00:00
exit /b
)
if "%1"=="push" (
call make.bat tidy
git status
git add .
git commit
2023-08-10 23:17:10 +00:00
if "%2"=="out" (
git push
)
2023-08-10 14:30:56 +00:00
exit /b
)
if "%1"=="prep" (
call make.bat join
call make.bat amalgamation
exit /b
)
rem shortcuts for split & join amalgamation scripts
if "%1"=="split" (
call tools\split
exit /b
)
if "%1"=="join" (
call tools\join
exit /b
)
rem check memory api calls
if "%1"=="checkmem" (
2023-08-10 14:30:56 +00:00
findstr /RNC:"[^_xv]realloc[(]" engine\v4k.c engine\split\v4k*
findstr /RNC:"[^_xv]xrealloc[(]" engine\v4k.c engine\split\v4k*
findstr /RNC:"[^_xv]malloc[(]" engine\v4k.c engine\split\v4k*
findstr /RNC:"[^_xv]free[(]" engine\v4k.c engine\split\v4k*
findstr /RNC:"[^_xv]calloc[(]" engine\v4k.c engine\split\v4k*
findstr /RNC:"[^_xv]strdup[(]" engine\v4k.c engine\split\v4k*
exit /b
)
if "%1"=="html5" (
pushd demos\html5
call make.bat %2
popd
exit /b
)
2023-08-10 20:34:20 +00:00
if "%1"=="web" (
python -m http.server --directory demos\html5 --bind 127.0.0.1 8000
exit /b
)
2023-09-08 12:10:14 +00:00
if "%1"=="vps" (
2023-09-08 20:23:54 +00:00
call make.bat docs
2023-09-08 12:10:14 +00:00
tools\pscp -4 -batch -agent -P 22 -l app engine\v4k.html 128.140.14.212:/home/app/microblog/app/static/v4k/index.html
2023-09-08 12:33:36 +00:00
rem tools\pscp -4 -batch -agent -P 22 -l app engine\joint\v4k.h 128.140.14.212:/home/app/microblog/app/static/v4k/v4k.h
2023-09-08 12:10:14 +00:00
exit /b
)
2023-08-10 18:52:50 +00:00
if "%1"=="fwk" (
if not exist "_fwk" mkdir "_fwk"
2023-08-14 17:25:13 +00:00
if not exist "_fwk\demos" mkdir "_fwk\demos"
if not exist "_fwk\tools" mkdir "_fwk\tools"
if not exist "_fwk\tools\editor" mkdir "_fwk\tools\editor"
if not exist "_fwk\engine" mkdir "_fwk\engine"
if not exist "_fwk\engine\split" mkdir "_fwk\engine\split"
2023-08-14 17:14:44 +00:00
setlocal enabledelayedexpansion
2023-08-14 17:25:13 +00:00
xcopy /y "*" "_fwk"
xcopy /y "engine\split\3rd_*" "_fwk\engine\split"
xcopy /y "demos" "_fwk\demos"
xcopy /y/E "tools "_fwk\tools"
2023-08-10 18:52:50 +00:00
for %%f in ("engine\split\v4k*") do (
set "filename=%%~nf"
set "newname=fwk!filename:v4k=!%%~xf"
2023-08-14 17:25:13 +00:00
echo Copying and renaming "%%f" to "_fwk\engine\split\!newname!"
copy "%%f" "_fwk\engine\split\!newname!"
2023-08-10 18:52:50 +00:00
)
2023-08-14 17:25:13 +00:00
for %%f in (_fwk\engine\split\*) do (
2023-08-10 18:52:50 +00:00
set "filename=%%~nxf"
if /i not "!filename:~0,4!"=="3rd_" (
echo Processing: %%f
tools\fwkren.exe %%f from
2023-08-11 19:46:46 +00:00
) else (
echo Skipping %%f
)
)
2023-08-14 17:30:36 +00:00
for %%f in (_fwk\demos\*.c) do (
2023-08-14 17:25:13 +00:00
set "filename=%%~nxf"
echo Processing: %%f
tools\fwkren.exe %%f from
)
2023-08-14 17:28:57 +00:00
rem for %%f in (_fwk\tools\*) do (
rem set "filename=%%~nxf"
rem echo Processing: %%f
rem tools\fwkren.exe %%f from
rem )
2023-08-14 17:30:36 +00:00
for %%f in (_fwk\tools\editor\*.c) do (
2023-08-14 17:25:13 +00:00
set "filename=%%~nxf"
echo Processing: %%f
tools\fwkren.exe %%f from
)
2023-08-11 19:46:46 +00:00
2023-08-14 17:27:44 +00:00
tools\fwkren.exe tools\cook.ini from
2023-08-11 19:46:46 +00:00
echo All done.
endlocal
exit /b
)
if "%1"=="back" (
2023-08-14 17:14:44 +00:00
if not exist "_fwk" exit /b
2023-08-11 19:46:46 +00:00
setlocal enabledelayedexpansion
2023-08-14 17:25:13 +00:00
xcopy /y "_fwk" "."
xcopy /y "_fwk\engine\split\3rd_*" "engine\split"
xcopy /y "_fwk\demos" "demos"
xcopy /y/E "_fwk\tools "tools"
for %%f in ("_fwk\engine\split\fwk*") do (
2023-08-11 19:46:46 +00:00
set "filename=%%~nf"
set "newname=v4k!filename:fwk=!%%~xf"
echo Copying and renaming "%%f" to "engine\split\!newname!"
copy "%%f" "engine\split\!newname!"
)
for %%f in (engine\split\*) do (
set "filename=%%~nxf"
if /i not "!filename:~0,4!"=="3rd_" (
echo Processing: %%f
tools\fwkren.exe %%f to
2023-08-10 18:52:50 +00:00
) else (
echo Skipping %%f
)
)
2023-08-14 17:27:44 +00:00
for %%f in (demos\*.c) do (
2023-08-14 17:25:13 +00:00
set "filename=%%~nxf"
echo Processing: %%f
tools\fwkren.exe %%f to
)
2023-08-14 17:28:57 +00:00
rem for %%f in (tools\*.c) do (
rem set "filename=%%~nxf"
rem echo Processing: %%f
rem tools\fwkren.exe %%f to
rem )
2023-08-14 17:30:36 +00:00
for %%f in (tools\editor\*.c) do (
2023-08-14 17:25:13 +00:00
set "filename=%%~nxf"
echo Processing: %%f
tools\fwkren.exe %%f to
)
2023-08-10 18:52:50 +00:00
2023-08-14 17:27:44 +00:00
tools\fwkren.exe tools\cook.ini to
2023-08-10 18:52:50 +00:00
echo All done.
endlocal
exit /b
)
rem copy demos to root folder. local changes are preserved
rem echo n | copy /-y demos\*.c 1> nul 2> nul
rem tidy environment
if "%1"=="tidy" (
move /y ??-*.png demos > nul 2> nul
move /y ??-*.c demos > nul 2> nul
2023-08-10 14:30:56 +00:00
del engine\bind\v4k.dll > nul 2> nul
del .temp*.* > nul 2> nul
del *.zip > nul 2> nul
del *.mem > nul 2> nul
del *.exp > nul 2> nul
2023-08-14 17:10:31 +00:00
del tools\*.exp > nul 2> nul
del *.lib > nul 2> nul
del *.exe > nul 2> nul
del *.obj > nul 2> nul
2023-08-14 17:10:31 +00:00
del tools\*.obj > nul 2> nul
del *.o > nul 2> nul
del *.a > nul 2> nul
del *.pdb > nul 2> nul
del *.ilk > nul 2> nul
del *.png > nul 2> nul
del *.mp4 > nul 2> nul
del *.def > nul 2> nul
del *.dll > nul 2> nul
del 3rd_*.* > nul 2> nul
2023-08-10 14:30:56 +00:00
del v4k_*.* > nul 2> nul
rem del ??-*.* > nul 2> nul
del temp_*.* > nul 2> nul
rd /q /s .vs > nul 2> nul
rd /q /s _debug > nul 2> nul
rd /q /s _devel > nul 2> nul
rd /q /s _release > nul 2> nul
2023-08-10 19:00:12 +00:00
rd /q /s _fwk > nul 2> nul
rem rd /q /s _project > nul 2> nul
del tcc.bat > nul 2> nul
del sh.bat > nul 2> nul
exit /b
)
set cc=%cc%
set dll=dll
set build=dev
set args=-Iengine
set other=
2023-08-10 14:30:56 +00:00
set v4k=yes
2023-08-10 22:19:00 +00:00
set hello=no
set demos=no
2023-08-10 22:28:06 +00:00
set extras=no
2023-08-10 14:30:56 +00:00
set editor=no
set vis=no
set proj=no
set rc=0
2023-09-10 16:16:25 +00:00
set run=no
:parse_args
if "%1"=="--" shift && goto parse_compiler_args
if "%1"=="dll" set "dll=%1" && goto loop
if "%1"=="static" set "dll=%1" && goto loop
if "%1"=="dbg" set "build=%1" && goto loop
if "%1"=="dev" set "build=%1" && goto loop
if "%1"=="rel" set "build=%1" && goto loop
if "%1"=="debug" set "build=dbg" && goto loop
if "%1"=="devel" set "build=dev" && goto loop
if "%1"=="develop" set "build=dev" && goto loop
if "%1"=="developer" set "build=dev" && goto loop
if "%1"=="development" set "build=dev" && goto loop
if "%1"=="release" set "build=rel" && goto loop
if "%1"=="vis" set "vis=yes" && goto loop
2023-08-10 14:30:56 +00:00
if "%1"=="nov4k" set "v4k=no" && goto loop
if "%1"=="nodemos" set "demos=no" && goto loop
if "%1"=="demos" set "demos=yes" && set "hello=no" && goto loop
2023-08-10 23:15:15 +00:00
if "%1"=="extras" set "extras=yes" && set "hello=no" && goto loop
if "%1"=="noeditor" set "editor=no" && goto loop
2023-08-10 22:19:00 +00:00
if "%1"=="hello" set "hello=yes" && goto loop
if "%1"=="editor" set "editor=yes" && set "hello=no"&& goto loop
2023-09-10 16:16:25 +00:00
if "%1"=="run" set "run=yes" && goto loop
2023-08-10 23:16:08 +00:00
if "%1"=="all" set "v4k=yes" && set "demos=yes" && set "extras=yes" && set "editor=yes" && set "hello=yes" && goto loop
if "%1"=="tcc" set "cc=%1" && goto loop
if "%1"=="cl" set "cc=%1" && goto loop
if "%1"=="vc" set "cc=cl" && goto loop
if "%1"=="cc" set "cc=%1" && goto loop
if "%1"=="gcc" set "cc=%1" && goto loop
if "%1"=="clang" set "cc=%1" && goto loop
if "%1"=="clang-cl" set "cc=%1" && goto loop
if "%1"=="proj" set "proj=yes" && goto loop
if not "%1"=="" set "other=!other! %1" && set "editor=no" && set "demos=no"
:loop
if not "%1"=="" shift && goto parse_args
:parse_compiler_args
if not "%1"=="" set "args=!args! %1" && shift && goto parse_compiler_args
set vs=00
rem detect setup
if "!cc!"=="" (
echo Detecting VS 2022/2019/2017/2015/2013 x64 ...
set cc=cl
if exist "%VS170COMNTOOLS%/../../VC/Auxiliary/Build/vcvarsx86_amd64.bat" (
@call "%VS170COMNTOOLS%/../../VC/Auxiliary/Build/vcvarsx86_amd64.bat" > nul && set "vs=22"
) else if exist "%VS160COMNTOOLS%/../../VC/Auxiliary/Build/vcvarsx86_amd64.bat" (
@call "%VS160COMNTOOLS%/../../VC/Auxiliary/Build/vcvarsx86_amd64.bat" > nul && set "vs=19"
) else if exist "%VS150COMNTOOLS%/../../VC/Auxiliary/Build/vcvarsx86_amd64.bat" (
@call "%VS150COMNTOOLS%/../../VC/Auxiliary/Build/vcvarsx86_amd64.bat" > nul && set "vs=17"
) else if exist "%VS140COMNTOOLS%/../../VC/bin/x86_amd64/vcvarsx86_amd64.bat" (
@call "%VS140COMNTOOLS%/../../VC/bin/x86_amd64/vcvarsx86_amd64.bat" > nul && set "vs=15"
) else if exist "%VS120COMNTOOLS%/../../VC/bin/x86_amd64/vcvarsx86_amd64.bat" (
@call "%VS120COMNTOOLS%/../../VC/bin/x86_amd64/vcvarsx86_amd64.bat" > nul && set "vs=13"
) else if exist "%ProgramFiles%/microsoft visual studio/2022/community/VC/Auxiliary/Build/vcvarsx86_amd64.bat" (
@call "%ProgramFiles%/microsoft visual studio/2022/community/VC/Auxiliary/Build/vcvarsx86_amd64.bat" > nul && set "vs=22"
) else if exist "%ProgramFiles(x86)%/microsoft visual studio/2019/community/VC/Auxiliary/Build/vcvarsx86_amd64.bat" (
@call "%ProgramFiles(x86)%/microsoft visual studio/2019/community/VC/Auxiliary/Build/vcvarsx86_amd64.bat" > nul && set "vs=19"
) else if exist "%ProgramFiles(x86)%/microsoft visual studio/2017/community/VC/Auxiliary/Build/vcvarsx86_amd64.bat" (
@call "%ProgramFiles(x86)%/microsoft visual studio/2017/community/VC/Auxiliary/Build/vcvarsx86_amd64.bat" > nul && set "vs=17"
) else (
echo Detecting Mingw64 ...
set cc=gcc
where /q gcc.exe || ( echo Detecting TCC ... && set "cc=tcc" )
)
)
rem solution. @todo: lin/osx
if "!proj!"=="yes" if not "%vs%"=="00" pushd tools && premake5 vs20%vs% & popd
if "!proj!"=="yes" if "%vs%"=="00" pushd tools && premake5 vs2013 & popd
if "!proj!"=="yes" pushd tools && premake5 ninja & popd
if "!proj!"=="yes" pushd tools && premake5 gmake & popd & exit /b
rem --- pipeline
rem cl tools/ass2iqe.c /Fetools/ass2iqe.exe /nologo /openmp /O2 /Oy /MT /DNDEBUG assimp.lib
rem cl tools/iqe2iqm.cpp /Fetools/iqe2iqm.exe /nologo /openmp /O2 /Oy /MT /DNDEBUG
rem cl tools/mid2wav.c /Fetools/mid2wav.exe /nologo /openmp /O2 /Oy /MT /DNDEBUG
rem cl tools/xml2json.c /Fetools/xml2json.exe /nologo /openmp /O2 /Oy /MT /DNDEBUG
rem --- pipeline
rem gcc tools/ass2iqe.c -o tools/ass2iqe.exe -w -lassimp
rem gcc tools/iqe2iqm.cpp -o tools/iqe2iqm.exe -w -lstdc++
rem gcc tools/mid2wav.c -o tools/mid2wav.exe -w
rem gcc tools/xml2json.c -o tools/xml2json.exe -w
rem --- different strategies for release builds
rem 4.6s 6.9MiB (default)
rem 33.7s 6.6MiB /Ox /Oy /MT /DNDEBUG
rem 35.8s 5.3MiB /O2 /Oy /MT /DNDEBUG
rem 17.9s 4.6MiB /O1 /MT /DNDEBUG /GL /GF /arch:AVX2
rem 17.8s 4.6MiB /Os /Ox /O2 /Oy /MT /DNDEBUG /GL /GF /arch:AVX2
rem 18.8s 4.6MiB /Os /Ox /O2 /Oy /MT /DNDEBUG /GL /GF /Gw /link /OPT:ICF /LTCG
rem 18.0s 4.6MiB /openmp /Os /Ox /O2 /Oy /MT /DNDEBUG /GL /GF /Gw /arch:AVX2 /link /OPT:ICF /LTCG
if "!cc!"=="cl" (
if "!dll!"=="static" (
set export=/c
2023-08-10 14:30:56 +00:00
set import=v4k.obj
) else (
set export=/DAPI=EXPORT /LD
2023-08-10 14:30:56 +00:00
set import=/DAPI=IMPORT v4k.lib
)
if "!build!"=="rel" (
set args=/nologo /Zi /MT /openmp /DNDEBUG !args! /Os /Ox /O2 /Oy /GL /GF /Gw /arch:AVX2 /link /OPT:ICF /LTCG
)
if "!build!"=="dev" (
set args=/nologo /Zi /MT /openmp /DEBUG !args! && REM /Os /Ox /O2 /Oy /GL /GF /Gw /arch:AVX2
)
if "!build!"=="dbg" (
set args=/nologo /Zi /MT /DEBUG !args! /Od /fsanitize=address
rem make -- /RTC1, or make -- /Zi /fsanitize=address /DEBUG
)
set o=/Fe:
set echo=REM
) else if "!cc!"=="clang-cl" (
if "!dll!"=="static" (
set export=/c
2023-08-10 14:30:56 +00:00
set import=v4k.obj
) else (
set export=/DAPI=EXPORT /LD
2023-08-10 14:30:56 +00:00
set import=/DAPI=IMPORT v4k.lib
)
2023-08-10 14:30:56 +00:00
set warnings_v4kc=-Wno-deprecated-declarations -Wno-tautological-constant-out-of-range-compare
set warnings_demos=-Wno-empty-body -Wno-format-security -Wno-pointer-sign
2023-08-10 14:30:56 +00:00
set warnings=!warnings_v4kc! !warnings_demos!
if "!build!"=="rel" (
set args=!warnings! /nologo /Zi /MT /openmp /DNDEBUG !args! /Os /Ox /O2 /Oy /GF /Gw /arch:AVX2
)
if "!build!"=="dev" (
set args=!warnings! /nologo /Zi /MT /openmp /DEBUG !args! && REM /Os /Ox /O2 /Oy /GF /Gw /arch:AVX2
)
if "!build!"=="dbg" (
set args=!warnings! /nologo /Zi /MT /DEBUG !args! /Od /fsanitize=address
)
set o=-o
set echo=echo
) else if "!cc!"=="tcc" (
if "!dll!"=="static" (
set export=-c
2023-08-10 14:30:56 +00:00
set import=v4k.o
) else (
set export=-DAPI=EXPORT -shared
2023-08-10 14:30:56 +00:00
set import=-DAPI=IMPORT v4k.def
)
if "!build!"=="rel" (
set args=-O3 -DNDEBUG !args!
)
if "!build!"=="dev" (
set args=-O2 -g !args!
)
if "!build!"=="dbg" (
set args=-O0 -g !args!
)
set o=-o
set echo=echo
) else ( rem if "!cc!"=="gcc" or "clang"
set libs=-lws2_32 -lgdi32 -lwinmm -ldbghelp -lole32 -lshell32 -lcomdlg32
if "!dll!"=="static" (
set export=-c
2023-08-10 14:30:56 +00:00
set import=v4k.o !libs! -Wl,--allow-multiple-definition
) else (
2023-08-10 14:30:56 +00:00
set export=-DAPI=EXPORT -shared -o v4k.dll !libs! -Wl,--out-implib,v4k.a
set import=-DAPI=IMPORT v4k.a
)
set args=-Wno-implicit-function-declaration !args!
if "!build!"=="rel" (
rem @todo see: https://stackoverflow.com/questions/866721/how-to-generate-gcc-debug-symbol-outside-the-build-target
set args=-O3 -DNDEBUG !args!
)
if "!build!"=="dev" (
set args=-g -O1 !args!
)
if "!build!"=="dbg" (
set args=-g -O0 !args!
)
set o=-o
set echo=echo
)
echo build=!build!, type=!dll!, cc=!cc!, other=!other!, args=!args!
echo import=!import!, export=!export!
if "!cc!"=="tcc" set "cc=call tools\tcc"
rem detect wether user-defined sources use single-header distro
2023-08-10 14:30:56 +00:00
rem if so, remove API=IMPORT flags and also do not produce v4k.dll by default
if not "!other!"=="" (
2023-08-10 14:30:56 +00:00
>nul find "V4K_IMPLEMENTATION" !other! && (
set import=
2023-08-10 14:30:56 +00:00
set v4k=no
)
)
rem framework
2023-08-10 14:30:56 +00:00
if "!v4k!"=="yes" (
if "!vis!"=="yes" echo !cc! engine\v4k.c !export! !args! ^&^& if "!dll!"=="dll" copy /y v4k.dll engine\bind ^> nul
!echo! v4k && !cc! engine\v4k.c !export! !args! && if "!dll!"=="dll" copy /y v4k.dll engine\bind > nul || set rc=1
)
rem editor
if "!editor!"=="yes" (
set edit=-DCOOK_ON_DEMAND -DUI_LESSER_SPACING -DUI_ICONS_SMALL
if "!vis!"=="yes" echo !cc! !o! editor.exe tools\editor\editor.c !edit! !import! !args!
2023-08-10 14:30:56 +00:00
!echo! editor && !cc! !o! editor.exe tools\editor\editor.c !edit! !import! !args! || set rc=1
!echo! editor2 && !cc! !o! editor2.exe tools\editor\editor2.c !edit! !args! || set rc=1
)
rem demos
if "!demos!"=="yes" (
2023-08-10 23:43:12 +00:00
!echo! 00-demo && !cc! !o! 00-demo.exe demos\00-demo.c !import! !args! || set rc=1
!echo! 00-ui && !cc! !o! 00-ui.exe demos\00-ui.c !import! !args! || set rc=1
!echo! 01-sprite && !cc! !o! 01-sprite.exe demos\01-sprite.c !import! !args! || set rc=1
!echo! 02-ddraw && !cc! !o! 02-ddraw.exe demos\02-ddraw.c !import! !args! || set rc=1
2023-08-10 23:15:15 +00:00
!echo! 02-frustum && !cc! !o! 02-frustum.exe demos\02-frustum.c !import! !args! || set rc=1
!echo! 03-anims && !cc! !o! 03-anims.exe demos\03-anims.c !import! !args! || set rc=1
!echo! 04-actor && !cc! !o! 04-actor.exe demos\04-actor.c !import! !args! || set rc=1
2023-08-10 23:15:15 +00:00
!echo! 04-lod && !cc! !o! 04-lod.exe demos\04-lod.c !import! !args! || set rc=1
!echo! 05-scene && !cc! !o! 05-scene.exe demos\05-scene.c !import! !args! || set rc=1
!echo! 06-controller && !cc! !o! 06-controller.exe demos\06-controller.c !import! !args! || set rc=1
!echo! 07-network && !cc! !o! 07-network.exe demos\07-network.c !import! !args! || set rc=1
)
2023-08-10 22:28:06 +00:00
rem extras
if "!extras!"=="yes" (
for %%f in ("demos\99-*") do (
!echo! %%~nf && !cc! !o! %%~nf.exe demos\%%~nf.c !import! !args! || set rc=1
)
)
rem hello
if "!hello!"=="yes" (
!echo! hello && !cc! !o! hello.exe hello.c !args! || set rc=1
)
rem user-defined apps
if not "!other!"=="" (
if "!vis!"=="yes" echo !cc! !other! !import! !args!
!echo! !other! && !cc! !other! !import! !args! || set rc=1
)
2023-09-10 16:16:25 +00:00
rem if "!run!"=="yes" (
rem !
rem )
rem PAUSE only if double-clicked from Windows explorer
2023-09-11 06:29:01 +00:00
(((echo.%cmdcmdline%)|%WINDIR%\system32\find.exe /I "%~0")>nul)&&pause
cmd /c exit !rc!