#!/usr/bin/env gosh
;; Configuring @@package@@
;; Run ./configure (or gosh ./configure) to generate Makefiles.

(use gauche.configure)
(load "configure-compat" 
      :paths `(,(sys-dirname (current-load-path)))
      :error-if-not-found #f)

;; Here you can define handlers of configure arguments by cf-arg-enable
;; and cf-arg-with.  Note that --with-local is handled implicitly if you use
;; cf-init-gauche-extension.


;; Initialize configure.  This creates the global context, parses
;; command-line args and sets up default values.
(cf-init-gauche-extension)

;; Here you can add feature tests and other cf-define's.

;; Output
(cf-output-default)

;; Local variables:
;; mode: scheme
;; end:
