lama_byterun/stdlib/Makefile

26 lines
341 B
Makefile
Raw Normal View History

2020-01-14 19:14:12 +03:00
SHELL := /bin/bash
2020-02-16 00:21:15 +03:00
FILES=$(wildcard *.lama)
ALL=$(sort $(FILES:.lama=.o))
LAMAC=../src/lamac
all: $(ALL)
Fun.o: Ref.o
Collection.o: List.o Ref.o
2020-01-15 22:33:46 +03:00
2020-01-16 06:59:34 +03:00
Array.o: List.o
Ostap.o: List.o Collection.o Ref.o Fun.o Matcher.o
Expr.o: Ostap.o
2020-02-16 00:21:15 +03:00
%.o: %.lama
$(LAMAC) -I . -c $<
clean:
rm -Rf *.s *.o *.i *~
2020-01-14 18:35:33 +03:00
pushd regression && make clean && popd