lama_byterun/stdlib/Makefile
2020-01-20 03:38:43 +03:00

23 lines
309 B
Makefile

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
Array.o: List.o
Ostap.o: List.o Collection.o Ref.o Fun.o
%.o: %.expr
$(RC) -I . -c $<
clean:
rm -Rf *.s *.o *.i *~
pushd regression && make clean && popd