1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 01:57:09 +03:00
mal/r/Makefile
Joel Martin 90f618cbe7 All: rename stepA_interop to stepA_mal
Also, add missed postscript interop tests.
2015-02-28 11:09:54 -06:00

25 lines
463 B
Makefile

TESTS =
SOURCES_BASE = readline.r types.r reader.r printer.r
SOURCES_LISP = env.r core.r stepA_mal.r
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
all: libs
.PHONY: stats tests $(TESTS)
stats: $(SOURCES)
@wc $^
stats-lisp: $(SOURCES_LISP)
@wc $^
.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