mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-03 06:20:57 +00:00
f1c6595996
- Windows version is now built using VS2013-update5 with the WinXP option. - SDL-2.0.6 bugs #3845, 3846, 3848, 3849, and 3851 are still not resolved. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1513 af15c1b1-3010-417e-b628-4374ebc0bcbd
11 lines
287 B
Makefile
11 lines
287 B
Makefile
# Open Watcom makefile to generate SDL2.lib
|
|
# def2lbc.awk (from OW source tree) requires 'awk'
|
|
# run 'wmake'
|
|
|
|
all: SDL2.lib
|
|
|
|
SDL2.exp: SDL2.def def2lbc.awk
|
|
awk -v cpu=386 -f def2lbc.awk SDL2.def > SDL2.exp
|
|
|
|
SDL2.lib: SDL2.exp
|
|
wlib -q -b -n -c -pa -s -t -zld -ii -io SDL2.lib @SDL2.exp
|