mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-26 08:38:47 +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 *~
|