Makefile.fpc 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #
  2. # Makefile.fpc for Free Pascal Utils
  3. #
  4. [package]
  5. name=utils
  6. version=2.5.1
  7. [target]
  8. dirs=fppkg fpcm tply h2pas fprcp dxegen fpdoc
  9. programs=ppdep ptop rstconv data2inc delp bin2obj postw32 rmcvsdir
  10. programs_linux=grab_vcsa
  11. dirs_win32=fpmc fpcres
  12. dirs_win64=fpmc fpcres
  13. dirs_wince=fpcres
  14. dirs_linux=fpcres
  15. dirs_freebsd=fpcres
  16. dirs_openbsd=fpcres
  17. dirs_netbsd=fpcres
  18. dirs_darwin=fpcres fpcreslipo
  19. dirs_solaris=fpcres
  20. rsts=rstconv
  21. [require]
  22. packages=fcl-base paszlib hash
  23. packages_darwin=univint
  24. [clean]
  25. units=ptopu
  26. [install]
  27. fpcpackage=y
  28. [default]
  29. fpcdir=..
  30. [rules]
  31. #
  32. # Pascal beautifier
  33. #
  34. ptop$(EXEEXT): ptop.pp ptopu$(PPUEXT)
  35. ptopu$(PPUEXT): ptopu.pp
  36. #
  37. # Other
  38. #
  39. ppdep$(EXEEXT): ppdep.pp
  40. #
  41. # Don't export some tools, which are found in the current dir if it's in
  42. # the path, so are not valid for the subdirs
  43. #
  44. unexport DATA2INC
  45. # order dependencies to avoid link.res clashes
  46. # -- only supported as of Make 3.80, which is not available for go32v2 ->
  47. # no parallel making here...
  48. #
  49. #grab_vcsa$(EXEEXT): | ppdep$(EXEEXT)
  50. #
  51. #ppdep$(EXEEXT): | ptop$(EXEEXT)
  52. #
  53. #ptop$(EXEEXT): | postw32$(EXEEXT)
  54. #
  55. #postw32$(EXEEXT): | rstconv$(EXEEXT)
  56. #
  57. #rstconv$(EXEEXT): | data2inc$(EXEEXT)
  58. #
  59. #data2inc$(EXEEXT): | delp$(EXEEXT)
  60. #
  61. #delp$(EXEEXT): | bin2obj$(EXEEXT)
  62. .NOTPARALLEL: