README.gmake
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. Gmake compliance is included for convenience because it may
  2. be found on many systems and most make programs are worse
  3. than gmake.
  4. If you have problems with the make file system and gmake,
  5. you are out of luck. Gmake has a debug option, but it gives
  6. tons of debug messages. Less than 1% of these debug messages are
  7. useful. Important things are missing in these debug messages.
  8. Gmake has bug with the VPATH= option. Some of the macros are
  9. not expanded correctly. I had to remove all occurrences of
  10. $@ $* and $^ on some places for this reason.
  11. On some platforms (e.g. OSF1), gmake is not able to correctly recognize
  12. the default target. If gmake complains about this, call ./Gmake all
  13. To use GNU make create a file called 'Gmake' in you search path
  14. that contains:
  15. #!/bin/sh
  16. MAKEPROG=gmake
  17. export MAKEPROG
  18. exec gmake "$@"
  19. and call 'Gmake' instead of gmake. On Linux there is no gmake, 'make'
  20. on Linux is really a gmake.
  21. 'Gmake' and 'Gmake.linux' are part of this distribution.