Commit 383540ee authored by Dave Cooper's avatar Dave Cooper
Browse files

added temporary gendl-asdf because of old quicklisp.

parent 3209b2cc
Loading
Loading
Loading
Loading
Loading

gendl-asdf.asd

0 → 100644
+8 −0
Original line number Diff line number Diff line
;;;; -*- coding: utf-8 -*-

(asdf:defsystem #:gendl-asdf
  :description "asdf gendl artifacts loading"
  :serial t 
  :version "20161111" 
  :depends-on (#:gwl) ;; TODO reduce this one to a minimal dependency
  :components ((:file "gendl-asdf")))

gendl-asdf.lisp

0 → 100644
+8 −0
Original line number Diff line number Diff line
;;;; -*- coding: utf-8 -*-
(in-package :gdl-user)

(defclass asdf::gdl (asdf::cl-source-file) ((type :initform "gdl")))
(defclass asdf::gendl (asdf::cl-source-file) ((type :initform "gendl")))
(defclass asdf::lisp (asdf::cl-source-file) ())