summaryrefslogtreecommitdiff
path: root/html-jen.asd
blob: 737c3a7ef82481619087473cc180c9ed9089f7a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defsystem html-jen
  :author "Emre Akan"
  :license "GPLv3"
  :depends-on (uiop)
  :description "Markdown dosyalarından HTML jenerasyonu yapan yazılım."
  :pathname "src/"
  :components ((:file "paket")
               (:file "tanım")
               (:file "okur")
               (:file "üretim")
               (:file "ana"))
  :build-operation "program-op"
  :build-pathname "../html-üret"
  :entry-point "html-jen::ana"
  :in-order-to ((test-op (test-op "html-jen/testler"))))

(defsystem "html-jen/testler"
  :depends-on ("html-jen")
  :pathname "testler/"
  :components ((:file "test"))
  :perform (test-op (o c) (symbol-call :html-jen/testler :testleri-çalıştır)))