lama_byterun/runtime/Makefile

13 lines
245 B
Makefile
Raw Normal View History

2018-11-21 14:23:35 +03:00
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
2018-11-21 14:23:35 +03:00
runtime.o: runtime.c
gcc -g -fstack-protector-all -m32 -c runtime.c
2018-03-04 23:13:08 +03:00
clean:
2018-11-21 14:23:35 +03:00
rm -f *.a *.o *~
2018-03-04 23:13:08 +03:00