mirror of
https://github.com/CTCaer/hekate
synced 2024-11-03 02:26:35 +00:00
33 lines
863 B
Makefile
33 lines
863 B
Makefile
|
ifeq ($(strip $(DEVKITARM)),)
|
||
|
$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM")
|
||
|
endif
|
||
|
|
||
|
include $(DEVKITARM)/base_rules
|
||
|
|
||
|
TARGET := libsys_lp0
|
||
|
BUILD := ../../build/$(TARGET)
|
||
|
OUTPUT := ../../output
|
||
|
VPATH = $(dir $(wildcard ./*/)) $(dir $(wildcard ./*/*/))
|
||
|
|
||
|
OBJS = $(addprefix $(BUILD)/,\
|
||
|
sys_sdramlp0.o \
|
||
|
)
|
||
|
|
||
|
ARCH := -march=armv4t -mtune=arm7tdmi -mthumb-interwork
|
||
|
CFLAGS = $(ARCH) -O2 -nostdlib -fpie -ffunction-sections -fdata-sections -fomit-frame-pointer -fno-inline -std=gnu11 -Wall $(CUSTOMDEFINES)
|
||
|
LDFLAGS = $(ARCH) -fpie -pie -nostartfiles -lgcc
|
||
|
|
||
|
.PHONY: clean all
|
||
|
|
||
|
all: $(TARGET).bso
|
||
|
$(BUILD)/%.o: ./%.c
|
||
|
@mkdir -p "$(BUILD)"
|
||
|
$(CC) $(CFLAGS) -c $< -o $@
|
||
|
|
||
|
$(TARGET).bso: $(OBJS)
|
||
|
$(CC) $(LDFLAGS) -e _modInit $^ -o $(OUTPUT)/$(TARGET).bso
|
||
|
$(STRIP) -g $(OUTPUT)/$(TARGET).bso
|
||
|
|
||
|
clean:
|
||
|
@rm -rf $(OUTPUT)/$(TARGET).bso
|