lw-build-system/scripts/build.module.c/instantiate

14 lines
290 B
Plaintext
Raw Permalink Normal View History

2007-01-31 14:03:00 +00:00
if [ $# -ne 0 ]
then
print_failure "Not expecting arguments."
exit 1
fi
do_parameter_subst
add_config_option "CC" "${COPT_CC_DEFAULT}"
add_config_option "CFLAGS" "${COPT_CFLAGS_DEFAULT}"
2007-09-11 23:06:23 +01:00
add_config_option "MODULEDIR" "\${LIBDIR}/@TODO@/"
2007-01-31 14:03:00 +00:00
true
2007-08-08 13:03:18 +01:00
# vim: syntax=sh:expandtab:ts=4:sw=4