lama_byterun/stdlib/Makefile

16 lines
208 B
Makefile
Raw Normal View History

2020-01-14 19:14:12 +03:00
SHELL := /bin/bash
FILES=$(wildcard *.expr)
ALL=$(sort $(FILES:.expr=.o))
RC=../src/rc.opt
all: $(ALL)
%.o: %.expr
2020-01-15 06:12:01 +03:00
$(RC) -I . -c $<
clean:
rm -Rf *.s *.o *.i *~
2020-01-14 18:35:33 +03:00
pushd regression && make clean && popd