lama_byterun/stdlib/Makefile

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