mirror of
https://github.com/ProgramSnail/Lama.git
synced 2026-01-01 03:28:19 +00:00
8 lines
89 B
Makefile
8 lines
89 B
Makefile
|
|
all: runtime.o
|
||
|
|
|
||
|
|
runtime.o: runtime.c
|
||
|
|
gcc -g -m32 -c runtime.c
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -f *.a *.o *~
|