123456789101112131415161718192021222324252627282930313233343536 |
- #
- # Makefile.fpc for gba units
- #
- [package]
- version=2.4.0
- [target]
- loaders=core_asm
- units=gba maxmod
- #exampledirs=examples
- [compiler]
- options=
- includedir=src src/maxmod
- sourcedir=src tests
- [prerules]
- BINUTILSPREFIX=arm-eabi-
- [install]
- fpcpackage=y
- [default]
- cpu=arm
- target=gba
- fpcdir=../..
- [require]
- nortl=y
- [rules]
- .NOTPARALLEL:
- core_asm$(OEXT):src/gba/core_asm.as
- $(AS) -o $(UNITTARGETDIRPREFIX)core_asm$(OEXT) src/gba/core_asm.as
|