1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-19 09:38:28 +03:00
mal/impls/r/Makefile
Joel Martin 8a19f60386 Move implementations into impls/ dir
- Reorder README to have implementation list after "learning tool"
  bullet.

- This also moves tests/ and libs/ into impls. It would be preferrable
  to have these directories at the top level.  However, this causes
  difficulties with the wasm implementations which need pre-open
  directories and have trouble with paths starting with "../../". So
  in lieu of that, symlink those directories to the top-level.

- Move the run_argv_test.sh script into the tests directory for
  general hygiene.
2020-02-10 23:50:16 -06:00

36 lines
715 B
Makefile

SOURCES_BASE = readline.r types.r reader.r printer.r
SOURCES_LISP = env.r core.r stepA_mal.r
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
STEPS = step0_repl.r step1_read_print.r step2_eval.r step3_env.r \
step4_if_fn_do.r step5_tco.r step6_file.r \
step7_quote.r step8_macros.r step9_try.r stepA_mal.r
all: libs
dist: mal.r mal
mal.r: $(SOURCES)
cat $+ | grep -v " source(" > $@
mal: mal.r
echo "#!/usr/bin/env Rscript" > $@
cat $< >> $@
chmod +x $@
$(STEPS): libs
.PHONY:
libs: lib/rdyncall
lib/rdyncall:
curl -O http://cran.r-project.org/src/contrib/Archive/rdyncall/rdyncall_0.7.5.tar.gz
mkdir -p lib
R CMD INSTALL rdyncall_0.7.5.tar.gz -l lib/
rm rdyncall_0.7.5.tar.gz
clean:
rm -f mal.r mal