# Acess2 Basic C Library # Makefile -include ../Makefile.cfg CPPFLAGS += CFLAGS += -Werror -Wextra ASFLAGS += LDFLAGS += -soname libc.so -Map map.txt INCFILES := stdio.h stdlib.h OBJ = stub.o heap.o stdlib.o env.o stdio.o string.o rand.o OBJ += perror.o scanf.o signals.o strtoi.o strtof.o OBJ += arch/$(ARCHDIR).ao # signals.o DEPFILES := $(OBJ:%.o=%.d) BIN = libc.so include ../Makefile.tpl