1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-19 17:47:53 +03:00
mal/forth/Makefile
2019-03-20 23:34:21 -05:00

20 lines
339 B
Makefile

SOURCES_BASE = str.fs types.fs reader.fs printer.fs
SOURCES_LISP = env.fs core.fs stepA_mal.fs
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
all:
true
dist: mal.fs mal
mal.fs: $(SOURCES)
cat $+ | egrep -v "^require |^droprequire " > $@
mal: mal.fs
echo "#! /usr/bin/env gforth" > $@
cat $< >> $@
chmod +x $@
clean:
rm -f mal.fs mal