mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-15 19:28:47 +00:00
12 lines
143 B
Makefile
12 lines
143 B
Makefile
FILES=$(wildcard *.expr)
|
|
ALL=$(sort $(FILES:.expr=.o))
|
|
RC=../src/rc.opt
|
|
|
|
all: $(ALL)
|
|
|
|
%.o: %.expr
|
|
$(RC) -c $<
|
|
|
|
clean:
|
|
rm -Rf *.s *.o *.i *~
|
|
|