2006-07-25 19:00:04 +01:00
|
|
|
if [ $# -ne 0 ]
|
|
|
|
then
|
|
|
|
print_failure "Too many arguments. None required for this module."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2006-07-25 19:59:37 +01:00
|
|
|
do_parameter_subst
|
2006-12-08 15:51:18 +00:00
|
|
|
add_config_option "HEXDIR" "${COPT_HEXDIR_DEFAULT}"
|
|
|
|
add_config_option "GPASM" "gpasm"
|
|
|
|
add_config_option "GPASM_FLAGS" ""
|
2006-07-25 19:59:37 +01:00
|
|
|
true
|
2006-07-25 19:00:04 +01:00
|
|
|
|
|
|
|
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
|
2007-08-08 13:03:18 +01:00
|
|
|
# vim: syntax=sh:expandtab:ts=4:sw=4
|