lama_byterun/stdlib/Makefile

14 lines
183 B
Makefile
Raw Normal View History

FILES=$(wildcard *.expr)
ALL=$(sort $(FILES:.expr=.o))
RC=../src/rc.opt
all: $(ALL)
%.o: %.expr
$(RC) -c $<
clean:
rm -Rf *.s *.o *.i *~
2020-01-14 18:35:33 +03:00
pushd regression && make clean && popd