sbcl.sbcl/contrib/sb-graph/sb-graph.asd
Sean Maher b91ca63476 Implement sb-graph, a plug-in to produce graphviz DOT from IR1
For documentation, read contrib/sb-graph/readme.org and
contrib/sb-graph/sb-graph.texinfo
sb-graph requires the :sb-devel feature.
2021-07-12 12:58:09 -04:00

18 lines
500 B
Common Lisp

;;; -*- Lisp -*-
#-(or sb-testing-contrib sb-building-contrib)
(error "Can't build contribs with ASDF")
(asdf:defsystem "sb-graph"
:serial t
:components
((:module src
:serial t
:components
((:file "package")
(:file "graphing")
(:file "hooking"))))
:perform (load-op :after (o c) (provide 'sb-graph)))
;;; The tests for sb-graph are under tests/sb-graph.impure.lisp to
;;; take advantage of the sbcl regression tester features.