equal
deleted
inserted
replaced
229 </font> |
229 </font> |
230 endef |
230 endef |
231 |
231 |
232 # Common echo of option |
232 # Common echo of option |
233 define OptionOnly # opt |
233 define OptionOnly # opt |
234 if [ "$1" != "" ] ; then \ |
234 if [ "$(strip $1)" != "" ] ; then \ |
235 $(PRINTF) "%s\n" "$1"; \ |
235 $(PRINTF) "%s\n" "$(strip $1)"; \ |
236 fi |
236 fi |
237 endef |
237 endef |
238 |
238 |
239 define OptionPair # opt arg |
239 define OptionPair # opt arg |
240 $(PRINTF) "%s '%s'\n" "$1" '$2' |
240 $(PRINTF) "%s '%s'\n" "$(strip $1)" '$(strip $2)' |
241 endef |
241 endef |
242 |
242 |
243 define OptionTrip # opt arg arg |
243 define OptionTrip # opt arg arg |
244 $(PRINTF) "%s '%s' '%s'\n" "$1" '$2' '$3' |
244 $(PRINTF) "%s '%s' '%s'\n" "$(strip $1)" '$(strip $2)' '$(strip $3)' |
245 endef |
245 endef |
246 |
246 |
247 # Core api bottom argument (with special sauce) |
247 # Core api bottom argument (with special sauce) |
248 COREAPI_BOTTOM = <font size="-1"> $(BUG_SUBMIT_LINE)\ |
248 COREAPI_BOTTOM = <font size="-1"> $(BUG_SUBMIT_LINE)\ |
249 <br>For further API reference and developer documentation, \ |
249 <br>For further API reference and developer documentation, \ |