mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
12 lines
245 B
Makefile
12 lines
245 B
Makefile
all: gc_runtime.o runtime.o
|
|
ar rc runtime.a gc_runtime.o runtime.o
|
|
|
|
gc_runtime.o: gc_runtime.s
|
|
gcc -g -fstack-protector-all -m32 -c gc_runtime.s
|
|
|
|
runtime.o: runtime.c
|
|
gcc -g -fstack-protector-all -m32 -c runtime.c
|
|
|
|
clean:
|
|
rm -f *.a *.o *~
|
|
|