1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 10:37:58 +03:00
mal/livescript/Makefile
Jos van Bakel 18ed164176 Step 0 & 1
2017-05-05 22:19:54 +02:00

17 lines
230 B
Makefile

TESTS =
SOURCES_BASE = reader.js printer.js
SOURCES_LISP =
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
all: $(SOURCES) node_modules
node_modules:
npm install
%.js: %.ls $(SOURCES)
lsc -d -c $(@:%.js=%.ls)
clean:
rm -f *.js