git.fiddlerwoaroof.com
Browse code

(init)

Ed Langley authored on 03/12/2018 09:10:51
Showing 3 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,2 @@
1
+*~
2
+*.fasl
0 3
new file mode 100644
... ...
@@ -0,0 +1,14 @@
1
+;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Package: ASDF-USER -*-
2
+(in-package :asdf-user)
3
+
4
+(defsystem :anonyblog 
5
+  :description ""
6
+  :author "Ed L <edward@elangley.org>"
7
+  :license "MIT"
8
+  :pathname #p"projects:anonyblog;"
9
+  :depends-on (#:alexandria
10
+               #:uiop
11
+               #:serapeum
12
+               #:hunchentoot)
13
+  :serial t
14
+  :components ((:file "anonyblog")))