lama_byterun/stdlib/Makefile
2020-01-05 22:54:09 +03:00

11 lines
134 B
Makefile

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