mirror of
https://github.com/lewurm/savezelda.git
synced 2024-11-17 16:19:21 +01:00
128 lines
2.5 KiB
Makefile
128 lines
2.5 KiB
Makefile
# Copyright 2008-2009 Segher Boessenkool <segher@kernel.crashing.org>
|
|
# Copyright 2011 roto <roto@mozy.org>
|
|
# Copyright 2011 Bernhard Urban <lewurm@gmail.com>
|
|
# This code is licensed to you under the terms of the GNU GPL, version 2;
|
|
# see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
|
|
|
|
|
# Configuration:
|
|
|
|
# What toolchain prefix should we use
|
|
CROSS ?= broadway-
|
|
|
|
# Where are the tools (http://git.infradead.org/users/segher/wii.git)
|
|
TOOLS ?= $(HOME)/wii/segher
|
|
|
|
# End of configuration.
|
|
|
|
|
|
|
|
# Set CC, LD, OBJCOPY based on CROSS, unless they are set already
|
|
|
|
ifeq ($(origin CC), default)
|
|
CC := $(CROSS)gcc -m32
|
|
endif
|
|
ifeq ($(origin LD), default)
|
|
LD := $(CROSS)ld
|
|
endif
|
|
OBJCOPY ?= $(CROSS)objcopy
|
|
|
|
|
|
# The compiler flags we need.
|
|
|
|
CFLAGS := -Wall -W -Os -ffreestanding -mno-eabi -mno-sdata -mcpu=750
|
|
|
|
|
|
# Build with "V=1" to see the commands executed; be quiet otherwise.
|
|
|
|
ifeq ($(V),1)
|
|
Q :=
|
|
else
|
|
Q := @
|
|
MAKEFLAGS += --no-print-directory
|
|
endif
|
|
|
|
|
|
targets := rlge.bin rlgp.bin rlgj.bin
|
|
|
|
ppms := $(targets:%.bin=%-icon.ppm) generic-banner.ppm
|
|
assets := title.bin $(ppms)
|
|
|
|
loader := ../loader/loader.bin
|
|
|
|
|
|
titleid = $(shell perl titleid.pl $(1))
|
|
|
|
|
|
define twintig
|
|
D=$(call titleid,$(1)); \
|
|
$(TOOLS)/twintig $$D $@ toc-$1
|
|
endef
|
|
|
|
|
|
all: $(targets)
|
|
|
|
$(targets): %.bin: toc-% FILE_V28 $(assets)
|
|
@echo " TWINTIG $@"
|
|
$(Q)$(call twintig,$*)
|
|
|
|
FILE_V28: head.bin exploit.bin $(loader)
|
|
@echo " LEGOSTACK $@"
|
|
$(Q)./pack.sh $@ $^
|
|
$(Q)$(TOOLS)/lego-cksum $@ 32380 #32328 #32688
|
|
|
|
head.bin: head.elf
|
|
@echo " OBJCOPY $@"
|
|
$(Q)$(OBJCOPY) -Obinary $< $@
|
|
|
|
exploit.bin: exploit.elf
|
|
@echo " OBJCOPY $@"
|
|
$(Q)$(OBJCOPY) -Obinary $< $@
|
|
|
|
exploit.elf: lego.lds exploit.o
|
|
@echo " LINK $@"
|
|
$(Q)$(LD) -T $^ -o $@
|
|
|
|
head.elf: head.o
|
|
@echo " LINK $@"
|
|
$(Q)$(LD) -e 0 $< -o $@
|
|
|
|
exploit.o: exploit.s
|
|
@echo " ASSEMBLE $@"
|
|
$(Q)$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
head.o: head.s head.b exploit2.s exploit.bin
|
|
@echo " ASSEMBLE $@"
|
|
$(Q)$(CC) $(CFLAGS) \
|
|
-Wa,--defsym,exploitlen=$(shell wc -c exploit.bin | awk '{ print $$1 }') \
|
|
-c $< -o $@
|
|
|
|
title.bin: ../.version
|
|
@echo " TITLEBIN $@"
|
|
$(Q)perl make-title-bin.pl > $@
|
|
|
|
../.version: FORCE
|
|
$(Q)$(MAKE) -C .. .version
|
|
|
|
$(ppms): %.ppm: %.png
|
|
@echo " PPM $@"
|
|
$(Q)convert $< $@
|
|
|
|
zero16k:
|
|
$(Q)dd if=/dev/zero bs=18256 count=1 2>/dev/null > $@
|
|
#17332
|
|
#16384
|
|
FAILURE:
|
|
$(Q)echo FAILURE > $@
|
|
|
|
$(loader): FORCE
|
|
$(Q)$(MAKE) -C ../loader
|
|
|
|
FORCE:
|
|
|
|
clean:
|
|
-rm -f $(targets) FILE_V28
|
|
-rm -f exploit.bin exploit.elf exploit.o
|
|
-rm -f head.bin head.elf head.o
|
|
-rm -f title.bin
|