fpcmake.1 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .TH fpcmake 1 "12 Dec 1999" "Free Pascal" "Free Pascal Makefile constructor"
  2. .SH NAME
  3. fpcmake \- The Free Pascal makefile constructor program.
  4. .SH SYNOPSIS
  5. .B fpcmake [filename [filename [filename]]]
  6. .SH DESCRIPTION
  7. .B fpcmake
  8. reads a
  9. .I Makefile.fpc
  10. and converts it to a
  11. .I Makefile
  12. suitable for reading by GNU
  13. .I make
  14. to compile your projects. It is similar in functionality to GNU
  15. .I autoconf
  16. or
  17. .I Imake
  18. for making X projects.
  19. .SH USAGE
  20. .B fpcmake
  21. accepts filenames of makefile description files as it's command-line
  22. arguments. For each of these files it will create a
  23. .I Makefile
  24. in the same directory where the file is located, overwriting any
  25. existing file with the same name.
  26. If no options are given, it just attempts to read the file
  27. .I Makefile.fpc
  28. in the current directory and tries to construct a Makefile from it.
  29. any previously existing
  30. .I Makefile
  31. will be erased. See
  32. .BR fpcmake (5)
  33. for a description of the format of the
  34. .I Makefile.fpc
  35. file.
  36. .SH SEE ALSO
  37. .IP
  38. .BR fpcmake (5)
  39. .BR ppc386 (1)
  40. .BR make (1)