lama_byterun/stdlib/Makefile
2020-01-14 17:08:35 +03:00

12 lines
143 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 *~