diff options
Diffstat (limited to 'libpsn00b/psxapi/makefile')
| -rw-r--r-- | libpsn00b/psxapi/makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/libpsn00b/psxapi/makefile b/libpsn00b/psxapi/makefile new file mode 100644 index 0000000..30c1522 --- /dev/null +++ b/libpsn00b/psxapi/makefile @@ -0,0 +1,34 @@ +# Run using make (Linux) or gmake (BSD) +# Part of the PSn00bSDK Project +# 2019 Lameguy64 / Meido-Tek Productions + +PREFIX = mipsel-unknown-elf- + +TARGET = ../libpsxapi.a + +SOURCES = stdio fs sys + +AFILES = $(foreach dir,$(SOURCES),$(wildcard $(dir)/*.s)) +OFILES = $(addprefix build/,$(AFILES:.s=.o)) + +INCLUDE = -I../include + +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: %.s + @mkdir -p $(dir $@) + $(CC) $(AFLAGS) $(INCLUDE) -c $< -o $@ + +clean: + rm -Rf build $(TARGET) |
