;;; -*- Mode:LISP; Package:USER; Base:10 -*-


(load "sys:verify;sysdef" :Set-default-pathname nil)
(load "sys:verify;bench;sysdef" :Set-default-pathname nil)

(defsystem benchmarks
  (:component-systems
;    micro-compilation-tools
    meta-eval
		      verify
		      rpg-benchmarks
;		      rpg-ubenchmarks

		      )
  (:do-components nil))


(defun doit ()
  (make-system 'benchmarks :noconfirm)
  (pkg-goto'rpg-benchmarks)
  (rpg-benchmarks:run-rpg-benchmarks))



