summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorriton <riton@riton.home>2025-03-24 02:09:09 +0300
committerriton <riton@riton.home>2025-03-24 02:09:09 +0300
commit5cad35b39e6ba16557b477d1eae7479c43290193 (patch)
treeba2a44b688eabd8f9012a76c65881d8b0af3b50a
parent4b96a87aaad75cf60a03c354d609f4673a4986ee (diff)
ana fonksiyon ve executable üretimi
-rw-r--r--ana.lisp7
-rwxr-xr-xbuild.sh5
-rw-r--r--html-jen.asd5
3 files changed, 16 insertions, 1 deletions
diff --git a/ana.lisp b/ana.lisp
index ac4c9ca..4b74169 100644
--- a/ana.lisp
+++ b/ana.lisp
@@ -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))))
diff --git a/build.sh b/build.sh
new file mode 100755
index 0000000..82e247a
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+sbcl --eval '(asdf:load-system :html-jen)' \
+ --eval '(asdf:make :html-jen)' \
+ --eval '(quit)'
diff --git a/html-jen.asd b/html-jen.asd
index bbad5d4..e2532cd 100644
--- a/html-jen.asd
+++ b/html-jen.asd
@@ -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")