dmgtris/project.mk

30 lines
422 B
Makefile
Raw Normal View History

2023-10-24 07:04:39 +00:00
# ROM Version
VERSION := 0x01
# 4 Character Game ID
2023-10-10 08:32:24 +00:00
GAMEID := DTGM
2023-10-24 07:04:39 +00:00
# ROM Title (14 chars max)
2023-10-10 08:32:24 +00:00
TITLE := DMGTRIS
2023-10-24 07:04:39 +00:00
# "Licensee" code (2 chars)
2023-10-10 08:32:24 +00:00
LICENSEE := NR
2023-10-24 07:04:39 +00:00
# Output options
ROMNAME := DMGTRIS
ROMEXT := GBC
# Extra assembler flags
# Do not insert nop after halt
2023-10-10 08:32:24 +00:00
ASFLAGS += -h
2023-10-24 07:04:39 +00:00
# Do optimize ld to ldh
ASFLAGS += -l
# Extra linker flags
# Tiny Rom
2023-10-10 08:32:24 +00:00
LDFLAGS += -t
2023-10-24 07:04:39 +00:00
# Extra fix flags
# SEt as gbc compatible
FIXFLAGS += -c