lama_byterun/stdlib/Makefile

12 lines
134 B
Makefile
Raw Normal View History

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