lama_byterun/stdlib/Makefile

26 lines
336 B
Makefile
Raw Normal View History

2020-01-14 19:14:12 +03:00
SHELL := /bin/bash
FILES=$(wildcard *.expr)
ALL=$(sort $(FILES:.expr=.o))
RC=../src/rc.opt
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
%.o: %.expr
2020-01-15 06:12:01 +03:00
$(RC) -I . -c $<
clean:
rm -Rf *.s *.o *.i *~
2020-01-14 18:35:33 +03:00
pushd regression && make clean && popd