mirror of
https://github.com/ProgramSnail/Lama.git
synced 2026-01-01 11:38:20 +00:00
7 lines
97 B
Makefile
7 lines
97 B
Makefile
all: runtime.o
|
|
|
|
runtime.o: runtime.c
|
|
gcc -g -m32 -no-pie -c runtime.c
|
|
|
|
clean:
|
|
rm -f *.a *.o *~
|