passport/Makefile

47 lines
1.4 KiB
Makefile
Raw Normal View History

2017-01-08 03:35:35 +00:00
#
# Passport Makefile
# assembles source code, optionally builds a disk image and mounts it
#
# original by Quinn Dunki on 2014-08-15
# One Girl, One Laptop Productions
# http://www.quinndunki.com/blondihacks
#
# adapted by 4am on 2017-01-07
#
# third-party tools required to build
# https://sourceforge.net/projects/acme-crossass/
ACME=acme
# https://www.brutaldeluxe.fr/products/crossdevtools/cadius/
# https://github.com/mach-kernel/cadius
CADIUS=cadius
# https://bitbucket.org/magli143/exomizer/wiki/Home
2018-10-04 03:11:40 +00:00
# requires Exomizer 3.0 or later
EXOMIZER=exomizer raw -P0 -q
2017-01-08 03:35:35 +00:00
BUILDDISK=build/passport
2017-01-08 03:35:35 +00:00
asm:
mkdir -p build
cd src/mods && $(ACME) universalrwts.a
2018-10-04 03:11:40 +00:00
$(EXOMIZER) build/universalrwts.bin -o build/universalrwts.tmp
printf "\xB8\x00" | cat - build/universalrwts.tmp > build/universalrwts.pak
cd src/mods && $(ACME) -r ../../build/t00only.lst t00only.a
2018-10-04 03:11:40 +00:00
$(EXOMIZER) build/t00only.bin -o build/t00only.tmp
printf "\x20\x00" | cat - build/t00only.tmp > build/t00only.pak
2018-08-09 19:35:35 +00:00
cd src && $(ACME) -r ../build/passport.lst passport.a 2> ../build/relbase.log
cd src && $(ACME) -DRELBASE=`cat ../build/relbase.log | cut -d"=" -f2 | cut -d"(" -f2 | cut -d")" -f1` passport.a
cp res/work.po "$(BUILDDISK)".po
cp res/_FileInformation.txt build/
$(CADIUS) ADDFILE "${BUILDDISK}".po "/PASSPORT/" "build/PASSPORT.SYSTEM"
bin/po2do.py build/ build/
rm "$(BUILDDISK)".po
2017-01-08 03:35:35 +00:00
clean:
rm -rf build/
mount:
open "$(BUILDDISK)".dsk
2017-01-08 03:35:35 +00:00
all: clean asm mount