blob: 30c152274dbd00103b2fc308acb3d51f2f107c45 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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)
|