lama_byterun/runtime32/Makefile

16 lines
301 B
Makefile
Raw Normal View History

RUNTIME=runtime.a
2024-08-28 20:49:37 +03:00
.DEFAULT := $(RUNTIME)
$(RUNTIME): gc_runtime.o runtime.o
ar rc $@ gc_runtime.o runtime.o
2024-08-28 20:49:37 +03:00
gc_runtime.o: gc_runtime.s
$(CC) -g -fstack-protector-all -m32 -c gc_runtime.s
runtime.o: runtime.c runtime.h
$(CC) -g -fstack-protector-all -m32 -c runtime.c
clean:
$(RM) *.a *.o *~