;;; -*- Mode: LISP; Syntax: Common-Lisp; Package: MAKE; -*- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; file: registry.system ;;; module: ;;; version: 0.0 -- 29-jul-10 (experimental) ;;; written by: oe, universitetet i oslo ;;; last update: ;;; updated by: ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (in-package :make) (pushnew :registry *features*) (defsystem "registry" :finally-do (funcall (intern "INITIALIZE" :registry)) :source-pathname (dir-append (get-sources-dir "registry") '(:relative "registry")) :binary-pathname (dir-append (get-binaries-dir "registry") '(:relative "registry")) :components ((:module "lisp" :source-pathname "" :binary-pathname "" :source-extension "lisp" :components ((:file "registry-package") (:file "registry.lisp")))) :depends-on ("ppcre"))