ana fonksiyon ve executable üretimi

This commit is contained in:
riton
2025-03-24 02:09:09 +03:00
parent 4b96a87aaa
commit 5cad35b39e
3 changed files with 16 additions and 1 deletions

View File

@@ -27,3 +27,10 @@
:if-does-not-exist :create
:if-exists :supersede)
(şablonlu-yazdır root dış)))))
(defun ana ()
(let ((args sb-ext:*posix-argv*))
(assert (= 3 (length args)))
(let ((kaynak (nth 1 args))
(hedef (nth 2 args)))
(markdown->html kaynak hedef))))

5
build.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
sbcl --eval '(asdf:load-system :html-jen)' \
--eval '(asdf:make :html-jen)' \
--eval '(quit)'

View File

@@ -7,4 +7,7 @@
(:file "tanım")
(:file "okur")
(:file "üretim")
(:file "ana")))
(:file "ana"))
:build-operation "program-op"
:build-pathname "html-üret"
:entry-point "html-jen::ana")