17 lines
359 B
Batchfile
17 lines
359 B
Batchfile
@echo off
|
|
REM Binaerbaum Tests kompilieren und ausfuehren
|
|
|
|
echo === Binaerbaum Tests kompilieren ===
|
|
gcc -g -Wall -o test_bintree.exe Test_bintree.c bintree.c stack.c
|
|
|
|
if %ERRORLEVEL% EQU 0 (
|
|
echo Kompilierung erfolgreich!
|
|
echo.
|
|
echo === Binaerbaum Tests ausfuehren ===
|
|
test_bintree.exe
|
|
) else (
|
|
echo Kompilierung fehlgeschlagen!
|
|
)
|
|
|
|
pause
|