14 lines
408 B
Common Lisp
14 lines
408 B
Common Lisp
(defsystem html-jen
|
||
:author "Emre Akan"
|
||
:license "GPLv3"
|
||
:depends-on (uiop)
|
||
:description "Markdown dosyalarından HTML jenerasyonu yapan yazılım."
|
||
: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")
|