mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
12 lines
134 B
Makefile
12 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 *~
|
||
|
|
|