view compal/Makefile @ 180:25b54c5ad6c2

calextract tool written, works
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sat, 12 Jul 2014 00:05:22 +0000
parents 237bb836521d
children 05d2d34f5015
line wrap: on
line source

C118=	c118-3.0.81.E-boot.bin
C123=	c123-boot.bin
C139=	c139-boot.90.04.bin
C139TF=	c139-tfboot.bin
C140=	c140-boot.bin
C156=	c156-boot.90.05.bin
GEN=	c118-newboot.dis16 c118-newboot.dis32 c118-newboot.hex \
	c123-boot.dis16 c123-boot.dis32 c123-boot.hex \
	c139-boot.dis16 c139-boot.dis32 c139-boot.hex \
	c139-tfboot.dis16 c139-tfboot.dis32 c139-tfboot.hex \
	c140-boot.dis16 c140-boot.dis32 c140-boot.hex \
	c156-boot.dis16 c156-boot.dis32 c156-boot.hex \
	osmovoodoo osmovoodoo.bin
ARMDIS=	../arm7dis/armdis
THUMBDIS=../arm7dis/thumbdis

all:	${GEN}

c118-newboot.dis16:	${C118} ${THUMBDIS}
	${THUMBDIS} ${C118} > $@

c118-newboot.dis32:	${C118} ${ARMDIS}
	${ARMDIS} ${C118} > $@

c118-newboot.hex:	${C118}
	hd ${C118} > $@

c123-boot.dis16:	${C123} ${THUMBDIS}
	${THUMBDIS} ${C123} > $@

c123-boot.dis32:	${C123} ${ARMDIS}
	${ARMDIS} ${C123} > $@

c123-boot.hex:	${C123}
	hd ${C123} > $@

c139-boot.dis16:	${C139} ${THUMBDIS}
	${THUMBDIS} ${C139} > $@

c139-boot.dis32:	${C139} ${ARMDIS}
	${ARMDIS} ${C139} > $@

c139-boot.hex:	${C139}
	hd ${C139} > $@

c139-tfboot.dis16:	${C139TF} ${THUMBDIS}
	${THUMBDIS} ${C139TF} > $@

c139-tfboot.dis32:	${C139TF} ${ARMDIS}
	${ARMDIS} ${C139TF} > $@

c139-tfboot.hex:	${C139TF}
	hd ${C139TF} > $@

c140-boot.dis16:	${C140} ${THUMBDIS}
	${THUMBDIS} ${C140} > $@

c140-boot.dis32:	${C140} ${ARMDIS}
	${ARMDIS} ${C140} > $@

c140-boot.hex:	${C140}
	hd ${C140} > $@

c156-boot.dis16:	${C156} ${THUMBDIS}
	${THUMBDIS} ${C156} > $@

c156-boot.dis32:	${C156} ${ARMDIS}
	${ARMDIS} ${C156} > $@

c156-boot.hex:	${C156}
	hd ${C156} > $@

osmovoodoo:	osmovoodoo.c
	gcc -O2 -o $@ $@.c

osmovoodoo.bin:	osmovoodoo
	./osmovoodoo

clean:
	rm -f ${GEN}