summaryrefslogtreecommitdiff
path: root/bgpview.asd
blob: 3bfdd3341b9dd7f5a0a34bf6de502585d2f14d68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(defpackage #:bgpview-asd
  (:use :cl :asdf))

(in-package :bgpview-asd)

(defsystem bgpview
    :name "bgpview"
    :version "0.1"
    :maintainer "Linus Nordberg"
    :description "A viewer for stored BGP updates."
    :depends-on (:postmodern :weblocks :cl-who)
    :components ((:module src
			  :components ((:file "package")
				       (:file "util" :depends-on ("package"))
				       (:file "defs" :depends-on ("util"))
				       (:module bgpview
						:components ((:file "bgpview"))
						:depends-on ("defs"))))))