8 lines
110 B
Batchfile
8 lines
110 B
Batchfile
|
@echo off
|
||
|
|
||
|
mkdir build
|
||
|
pushd build
|
||
|
|
||
|
clang -o test.exe -Wall -Wextra -Wpedantic -std=c99 -O0 -g ..\test.c
|
||
|
|
||
|
popd
|