Commit 77df6c5e authored by Eric Timmons's avatar Eric Timmons
Browse files

Move build script

parent 2c7fccd3
Loading
Loading
Loading
Loading
+8 −2
Original line number Original line Diff line number Diff line
;;;; CLPM Build Helper
#!/bin/sh
":" ; exec sbcl --script "$0" "$@"           # -*- mode: common-lisp; -*-
;;;; Script to easily build CLPM.
;;;;
;;;; This software is part of CLPM. See README.org for more information. See
;;;; LICENSE for license information.


(require :asdf)
(require :asdf)


@@ -12,7 +17,8 @@
(defvar *setup-file-pathname* *load-truename*
(defvar *setup-file-pathname* *load-truename*
  "The pathname to this file.")
  "The pathname to this file.")


(defvar *root-pathname* (uiop:pathname-directory-pathname *setup-file-pathname*)
(defvar *root-pathname* (uiop:pathname-parent-directory-pathname
                         (uiop:pathname-directory-pathname *setup-file-pathname*))
  "The pathname to the root directory of the CLPM release being built.")
  "The pathname to the root directory of the CLPM release being built.")


(defvar *build-root-pathname* (merge-pathnames "build/"
(defvar *build-root-pathname* (merge-pathnames "build/"