230b7775fe
and minor fixes: . add ack/clean target to lib, 'unify' clean target . add includes as library dependency . mk: exclude warning options clang doesn't have in non-gcc . set -e in lib/*.sh build files . clang compile error circumvention (disable NOASSERTS for release builds)
8 lines
67 B
Bash
Executable file
8 lines
67 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
export CC=cc
|
|
export MAKEOBJDIR=obj-ack
|
|
|
|
make $@
|