22 lines
690 B
Common Lisp
22 lines
690 B
Common Lisp
(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)))
|