This repository has been archived on 2025-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
helpless/build.sh
2024-08-23 14:16:21 +02:00

15 lines
No EOL
393 B
Bash
Executable file

#!/bin/sh
CC=x86_64-w64-mingw32-gcc
CFLAGS="-g -O0 -std=c11 --static -D_CRT_SECURE_NO_WARNINGS
-Wextra -Wno-sign-compare -Wno-unused-parameter
-lkernel32 -lgdi32 -luser32 -lruntimeobject
-lwinmm -ld3d11 -ldxguid -ld3dcompiler
-lshlwapi -lole32 -lavrt -lksuser -ldbghelp"
SRC=../build.c
EXENAME=game.exe
mkdir build
cd build
$CC $SRC -o $EXENAME $CFLAGS
cd ..