# Run using make (Linux) or gmake (BSD) # Part of the PSn00bSDK Project # 2019 Lameguy64 / Meido-Tek Productions PREFIX = mipsel-unknown-elf- TARGET = ../libc.a CFILES = $(notdir $(wildcard ./*.c)) AFILES = $(notdir $(wildcard ./*.s)) OFILES = $(addprefix build/,$(CFILES:.c=.o) $(AFILES:.s=.o)) INCLUDE = -I../include CFLAGS = -O2 -msoft-float -fno-builtin -fdata-sections -ffunction-sections -Wa,--strip-local-absolute AFLAGS = -msoft-float -Wa,--strip-local-absolute CC = $(PREFIX)gcc AS = $(PREFIX)as AR = $(PREFIX)ar RANLIB = $(PREFIX)ranlib all: $(TARGET) $(TARGET): $(OFILES) $(AR) cr $(TARGET) $(OFILES) $(RANLIB) $(TARGET) build/%.o: %.c @mkdir -p $(dir $@) $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ build/%.o: %.s @mkdir -p $(dir $@) $(CC) $(AFLAGS) $(INCLUDE) -c $< -o $@ clean: rm -Rf build $(TARGET)