Makefile.fpc 658 B

1234567891011121314151617181920212223242526272829303132333435
  1. #
  2. # Makefile.fpc for gba units
  3. #
  4. [package]
  5. name=gbaunits
  6. version=0.1.4
  7. [target]
  8. loaders=bios_asm core_asm
  9. units=gba_bg gba_blend gba_core gba_dma gba_irq gba_sio gba_mosaic gba_regs \
  10. gba_sprites gba_timer gba_types gba_video gba_window gba_bios gba_input gba_fade
  11. examples=
  12. [compiler]
  13. options=-CX
  14. [install]
  15. fpcpackage=y
  16. #prefix=d:/fpc4gba
  17. [default]
  18. cpu=arm
  19. target=gba
  20. fpcdir=../../..
  21. [require]
  22. nortl=y
  23. [rules]
  24. .NOTPARALLEL:
  25. core_asm$(OEXT):core_asm.as
  26. $(AS) -o $(UNITTARGETDIRPREFIX)core_asm$(OEXT) core_asm.as
  27. bios_asm$(OEXT):bios_asm.as
  28. $(AS) -o $(UNITTARGETDIRPREFIX)bios_asm$(OEXT) bios_asm.as