mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 09:38:11 +02:00
38 lines
471 B
Makefile
38 lines
471 B
Makefile
#
|
|
# Makefile.fpc for gba units
|
|
#
|
|
|
|
[package]
|
|
name=libgbafpc
|
|
version=3.3.1
|
|
|
|
[target]
|
|
loaders=core_asm
|
|
units=gba maxmod
|
|
exampledirs=examples
|
|
|
|
|
|
[compiler]
|
|
options=
|
|
includedir=src src/maxmod
|
|
sourcedir=src tests
|
|
|
|
[prerules]
|
|
BINUTILSPREFIX=arm-none-eabi-
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
|
|
[default]
|
|
cpu=arm
|
|
target=gba
|
|
fpcdir=../..
|
|
|
|
[require]
|
|
nortl=y
|
|
|
|
[rules]
|
|
.NOTPARALLEL:
|
|
core_asm$(OEXT):src/gba/core_asm.as
|
|
$(AS) src/gba/core_asm.as -o $(UNITTARGETDIRPREFIX)core_asm$(OEXT)
|