Makefile.fpc 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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_linux=fpcres
  13. dirs_freebsd=fpcres
  14. rsts=rstconv
  15. [require]
  16. packages=fcl-base paszlib hash
  17. [clean]
  18. units=ptopu
  19. [install]
  20. fpcpackage=y
  21. [default]
  22. fpcdir=..
  23. [rules]
  24. #
  25. # Pascal beautifier
  26. #
  27. ptop$(EXEEXT): ptop.pp ptopu$(PPUEXT)
  28. ptopu$(PPUEXT): ptopu.pp
  29. #
  30. # Other
  31. #
  32. ppdep$(EXEEXT): ppdep.pp
  33. #
  34. # Don't export some tools, which are found in the current dir if it's in
  35. # the path, so are not valid for the subdirs
  36. #
  37. unexport DATA2INC
  38. # order dependencies to avoid link.res clashes
  39. # -- only supported as of Make 3.80, which is not available for go32v2 ->
  40. # no parallel making here...
  41. #
  42. #grab_vcsa$(EXEEXT): | ppdep$(EXEEXT)
  43. #
  44. #ppdep$(EXEEXT): | ptop$(EXEEXT)
  45. #
  46. #ptop$(EXEEXT): | postw32$(EXEEXT)
  47. #
  48. #postw32$(EXEEXT): | rstconv$(EXEEXT)
  49. #
  50. #rstconv$(EXEEXT): | data2inc$(EXEEXT)
  51. #
  52. #data2inc$(EXEEXT): | delp$(EXEEXT)
  53. #
  54. #delp$(EXEEXT): | bin2obj$(EXEEXT)
  55. .NOTPARALLEL: