fi
DEFAULT_TARGET=${with_default_target}
- AC_ARG_WITH([default-target],
- AS_HELP_STRING([--with-default-target],
- [Set the default make target [[all]]]))
- DEFAULT_TARGET=${with_default_target=all}
-
+AC_ARG_WITH([gtk],
+ [AS_HELP_STRING([--with-gtk],
+ [Support the GNOME Toolkits [[auto]]])],
+ [],
+ [with_gtk=auto])
+
AC_CANONICAL_HOST
MIT_SCHEME_NATIVE_CODE([${enable_native_code}],[${host_cpu}])
(n+1-generator 2-generator))
(define interesting-svls
- (cons (list)
- (append! (1-generator interesting-points)
- (2-generator interesting-points)
- (3-generator interesting-points))))
+ (if (let ((v (get-environment-variable "FAST")))
+ (or (eq? v #f) (string-null? v)))
+ (begin
+ (warn "To avoid long runtimes, export FAST=y.")
+ (cons (list)
+ (append! (1-generator interesting-points)
+ (2-generator interesting-points)
+ (3-generator interesting-points))))
+ (begin
+ (cons (list)
- (1-generator interesting-points)))))
++ (1-generator interesting-points)))))