diff options
Diffstat (limited to 'main.lisp')
-rw-r--r-- | main.lisp | 23 |
1 files changed, 18 insertions, 5 deletions
@@ -61,7 +61,13 @@ :filepath :description "Kaynak dosyasını belirt." :short-name #\k - :key :kaynak))) + :key :kaynak) + (clingon:make-option + :string + :initial-value "nasm" + :description "Derleme hedefini belirt." + :short-name #\h + :key :hedef))) (defun subcommands () (list (clingon:make-command @@ -69,10 +75,17 @@ :description "Dosyadaki programı derle" :usage "<dosya-ismi>" :options (comp-options) - :handler (lambda (cmd) (generate-program - (make-program - (clingon:getopt cmd :kaynak)) - :compile t))) + :handler + (lambda (cmd) (let ((hedef (clingon:getopt cmd :hedef))) + (generate-program + (make-program + (clingon:getopt cmd :kaynak)) + :path + (format nil "output.~a" + (cond ((string-equal "nasm" hedef) "asm") + ((string-equal "c" hedef) "c"))) + :compile t + :target (intern (string-upcase hedef) :keyword))))) (clingon:make-command :name "test" :description "Testleri çalıştır." |