Makefile.fpc 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #
  2. # Makefile.fpc for Free Pascal Utils
  3. #
  4. [package]
  5. name=utils
  6. version=2.0.0
  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. [clean]
  24. units=ptopu
  25. [install]
  26. fpcpackage=y
  27. [default]
  28. fpcdir=..
  29. [rules]
  30. #
  31. # Pascal beautifier
  32. #
  33. ptop$(EXEEXT): ptop.pp ptopu$(PPUEXT)
  34. ptopu$(PPUEXT): ptopu.pp
  35. #
  36. # Other
  37. #
  38. ppdep$(EXEEXT): ppdep.pp
  39. #
  40. # Don't export some tools, which are found in the current dir if it's in
  41. # the path, so are not valid for the subdirs
  42. #
  43. unexport DATA2INC
  44. # order dependencies to avoid link.res clashes
  45. # -- only supported as of Make 3.80, which is not available for go32v2 ->
  46. # no parallel making here...
  47. #
  48. #grab_vcsa$(EXEEXT): | ppdep$(EXEEXT)
  49. #
  50. #ppdep$(EXEEXT): | ptop$(EXEEXT)
  51. #
  52. #ptop$(EXEEXT): | postw32$(EXEEXT)
  53. #
  54. #postw32$(EXEEXT): | rstconv$(EXEEXT)
  55. #
  56. #rstconv$(EXEEXT): | data2inc$(EXEEXT)
  57. #
  58. #data2inc$(EXEEXT): | delp$(EXEEXT)
  59. #
  60. #delp$(EXEEXT): | bin2obj$(EXEEXT)
  61. .NOTPARALLEL: