first commit
This commit is contained in:
commit
f3fd560eae
25 changed files with 1840 additions and 0 deletions
16
Makefile
Normal file
16
Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
NAME=animation
|
||||
|
||||
ASSEMBLER=rgbasm
|
||||
LINKER=rgblink
|
||||
POSTPROC=rgbfix
|
||||
|
||||
SRC=./src
|
||||
BUILD=./build
|
||||
ENTRY=${SRC}/main.asm
|
||||
ROM_OUTPUT=${BUILD}/${NAME}.gb
|
||||
OBJECT_OUTPUT=${BUILD}/${NAME}.o
|
||||
|
||||
all : ${ENTRY}
|
||||
${ASSEMBLER} -o ${OBJECT_OUTPUT} ${ENTRY} \
|
||||
&& ${LINKER} -o ${ROM_OUTPUT} -n ${NAME}.sym ${OBJECT_OUTPUT} \
|
||||
&& ${POSTPROC} -v -p 0 ${ROM_OUTPUT}
|
||||
Loading…
Add table
Add a link
Reference in a new issue