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