22 lines
430 B
Bash
22 lines
430 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
. bin/begin_bld_session.sh
|
||
|
bld_print_implicit_opts
|
||
|
|
||
|
|
||
|
# bin/build_test.sh
|
||
|
|
||
|
# bld_unit $src_path/main.cpp test
|
||
|
bld_unit $src_path/main.c test
|
||
|
|
||
|
# bld_unit $src_path/play_temp_wave.c
|
||
|
|
||
|
|
||
|
# bld_unit $src_path/fuzz.c fuzz
|
||
|
|
||
|
# bld_compile $src_path/d3d11/d3d11_target.cpp
|
||
|
# bld_compile $src_path/main.c
|
||
|
# bld_link test main.obj d3d11_target.obj -- graphical freetype
|
||
|
|
||
|
# bld_link euler $src_path/euler.c $src_path/euler_asm.asm
|