diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-05-12 07:54:52 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-05-12 07:54:52 -0700 |
commit | fca75faa1a6c3737b038d5fee6ce714a1f554280 (patch) | |
tree | fd36c5c47a0e22e4cd8fe723f7643cd9e919deb0 /Makefile | |
parent | 1162a735b61c1c5086fb6055471ee35cc8ed62a4 (diff) | |
download | txr-fca75faa1a6c3737b038d5fee6ce714a1f554280.tar.gz txr-fca75faa1a6c3737b038d5fee6ce714a1f554280.tar.bz2 txr-fca75faa1a6c3737b038d5fee6ce714a1f554280.zip |
New options: --in-package and --compile.
* txr.c (help): Mention new options.
(do_compile_opt, do_in_package_opt): New static functions.
(txr_main): Implement options.
* Makefile (COMPILE_TL): Use the options instead of -e.
* txr.1: Document.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -159,8 +159,7 @@ endef define COMPILE_TL $(call ABBREV,TXR) -$(call SH,$(TXR) -e \ - "(progn (in-package sys) (compile-file \"$<\" \"$@.tmp\"))") +$(call SH,$(TXR) --in-package=sys --compile=$<:$@.tmp) $(call SH,mv $@.tmp $@) endef |