8 lines
170 B
Bash
Executable File
8 lines
170 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# delete old objects
|
|
clean_dir "$OBJDIR/objects"
|
|
compile_c "$C_ARGS" "$SRC_C"
|
|
compile_cpp "$CPP_ARGS" "$SRC_CPP"
|
|
pack_static_lib "$STATIC_LIB_FILE"
|