Commit f75c2cac authored by Dave Cooper's avatar Dave Cooper
Browse files

added build file.

parent 3874921c
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
*~
*.html
*.fasl
 No newline at end of file

build.lisp

0 → 100644
+22 −0
Original line number Diff line number Diff line
(in-package :cl-user)

(load "~/quicklisp/setup.lisp")

(pushnew (make-pathname :defaults *load-truename* :name nil :type nil)
	 quicklisp:*local-project-directories* :test #'equalp)

(ql:register-local-projects)

(ql:quickload :clf-site)

(in-package :clf-site)


(defun make-site ()
  (gendl:start-gendl!)
  (let ((port (gwl::server-port)))
    (gwl:crawl :url-path "/clf-site" :port port)))

(make-site)

+7 −6
Original line number Diff line number Diff line
@@ -3,11 +3,12 @@
(asdf:defsystem #:clf-site :description
 "The Gendl® clf-site Subsystem" :author "Genworks International"
 :license "Affero Gnu Public License (http://www.gnu.org/licenses/)"
 :serial t :version "20191103" :depends-on (:cl-markdown)
 #-asdf-unicode :defsystem-depends-on #-asdf-unicode (:asdf-encodings)
 #+asdf-unicode :defsystem-depends-on #+asdf-unicode ()
 :serial t :version "20191105" :depends-on (:gwl :cl-markdown)
 #-asdf-unicode :defsystem-depends-on #-asdf-unicode (:asdf-encodings :gendl-asdf)
 #+asdf-unicode :defsystem-depends-on #+asdf-unicode (:gendl-asdf)
 #+asdf-encodings :encoding #+asdf-encodings :utf-8
 :components
 ((:file "source/package") (:gdl "source/base-page")
  (:gdl "source/board-page") (:gdl "source/contact-page")
  (:gdl "source/index-page") (:gdl "source/payment-policy-page")))
 ((:file "source/patches") (:file "source/package")
  (:gdl "source/base-page") (:gdl "source/board-page")
  (:gdl "source/contact-page") (:gdl "source/index-page")
  (:file "source/initialize") (:gdl "source/payment-policy-page")))
+1 −0
Original line number Diff line number Diff line
":gendl-asdf"
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
(:cl-markdown)
 No newline at end of file
(:gwl :cl-markdown)
 No newline at end of file
Loading