changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/skel/ext/asdf.lisp

changeset 698: 96958d3eb5b0
parent: 8fe057887c17
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; asdf.lisp --- ASDF system support for Skel
2 
3 ;; This package contains middleware between ASDF and Skel.
4 
5 ;;; Commentary:
6 
7 ;; ASDF is the defacto system management facility for Common Lisp
8 ;; implementations and we intend to fully interop with it.
9 
10 ;; Our design consists of two modules:
11 
12 ;; - An ASDF plugin for integrating skel into ASDF system definitions
13 
14 ;; - An ASDF system definition compiler - defined in the package :skel/comp/asd
15 
16 ;; Refs:
17 
18 ;; - https://github.com/atlas-engineer/nyxt/tree/master/libraries/nasdf
19 
20 ;;; Code:
21 (in-package :skel/ext/asdf)