lama_byterun/stdlib/Makefile
2020-01-15 06:12:01 +03:00

15 lines
208 B
Makefile

SHELL := /bin/bash
FILES=$(wildcard *.expr)
ALL=$(sort $(FILES:.expr=.o))
RC=../src/rc.opt
all: $(ALL)
%.o: %.expr
$(RC) -I . -c $<
clean:
rm -Rf *.s *.o *.i *~
pushd regression && make clean && popd