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

SCSI/ASPI

开发平台:

MultiPlatform

  1. #ident "@(#)mk-.id 1.10 98/10/13 "
  2. ###########################################################################
  3. # Written 1996 by J. Schilling
  4. ###########################################################################
  5. #
  6. # Name of make program (make/gmake/smake)
  7. #
  8. ###########################################################################
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; either version 2, or (at your option)
  12. # any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. # GNU General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU General Public License
  20. # along with this program; see the file COPYING.  If not, write to
  21. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  22. ###########################################################################
  23. MAKEPROG= make # Sun make
  24. ###########################################################################
  25. #
  26. # standard (automatic) machine identification
  27. #
  28. ###########################################################################
  29. #
  30. # XP_ARCH = uname -p = mach   # Processor (sparc/mc68020)
  31. # XK_ARCH = uname -m = arch -k # Kernel (sun3/sun4c/sun4m)
  32. # XM_ARCH = arch ~ arch -k # Machine (sun3/sun4)
  33. #
  34. ###########################################################################
  35. XP_ARCH:sh= (mach || uname -p || true)2>/dev/null      | tr '[A-Z]' '[a-z]' | tr ', /\()"' ',------'
  36. XK_ARCH:sh= uname -m                                   | tr '[A-Z]' '[a-z]' | tr ', /\()"' ',------'
  37. XM_ARCH:sh= (arch || /usr/ucb/arch || true)2>/dev/null | tr '[A-Z]' '[a-z]' | tr ', /\()"' ',------'
  38. P_ARCH= $(XP_ARCH)
  39. K_ARCH= $(XK_ARCH)
  40. M_ARCH= $(XM_ARCH)
  41. _XP_ARCH= $(XP_ARCH:unknown=$(K_ARCH))
  42. _P_ARCH= $(_UNIQ)$(_XP_ARCH)
  43. __P_ARCH= $(_P_ARCH:$(_UNIQ)=$(K_ARCH))
  44. P_ARCH= $(__P_ARCH:$(_UNIQ)%=%)
  45. _M_ARCH= $(_UNIQ)$(XM_ARCH)
  46. __M_ARCH= $(_M_ARCH:$(_UNIQ)=$(K_ARCH))
  47. M_ARCH= $(__M_ARCH:$(_UNIQ)%=%)
  48. OSNAME:sh= uname -s | tr '[A-Z]' '[a-z]' | tr ', /\()"' ',------'
  49. OSREL:sh= uname -r | tr '[A-Z]' '[a-z]' | tr ', /\()"' ',------'