freie_systeme/tools/build

14 lines
191 B
Plaintext
Raw Normal View History

2025-11-12 15:09:06 +01:00
#!/usr/bin/env sh
## consts
dir_here=$(pwd)
dir_source="${dir_here}/source"
dir_build="${dir_here}/build"
## exec
2025-11-12 15:43:49 +01:00
make -f tools/makefile dir_source=${dir_source} dir_build=${dir_build}
2025-11-12 15:09:06 +01:00