summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-05-12 07:54:52 -0700
committerKaz Kylheku <kaz@kylheku.com>2022-05-12 07:54:52 -0700
commitfca75faa1a6c3737b038d5fee6ce714a1f554280 (patch)
treefd36c5c47a0e22e4cd8fe723f7643cd9e919deb0 /Makefile
parent1162a735b61c1c5086fb6055471ee35cc8ed62a4 (diff)
downloadtxr-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--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4c1533fd..a53d2945 100644
--- a/Makefile
+++ b/Makefile
@@ -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