blob: 85a3b79c4025c611f0bcb430781101ab29aa904c (
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 sb-posix)
: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)))
|