lama_byterun/stdlib/Makefile
2020-01-14 18:35:33 +03:00

13 lines
183 B
Makefile

FILES=$(wildcard *.expr)
ALL=$(sort $(FILES:.expr=.o))
RC=../src/rc.opt
all: $(ALL)
%.o: %.expr
$(RC) -c $<
clean:
rm -Rf *.s *.o *.i *~
pushd regression && make clean && popd