home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Networking / bind-8.1.1 / nextstep / include / sys / Makefile < prev   
Encoding:
Makefile  |  1997-10-25  |  3.2 KB  |  107 lines

  1. # $Id: Makefile,v 1.2 1997/03/10 16:45:48 vixie Exp $
  2.  
  3. # ++Copyright++
  4. # -
  5. # Copyright (c)  Regents of the University of California.
  6. # All rights reserved.
  7. #
  8. # Redistribution and use in source and binary forms, with or without
  9. # modification, are permitted provided that the following conditions
  10. # are met:
  11. # 1. Redistributions of source code must retain the above copyright
  12. #    notice, this list of conditions and the following disclaimer.
  13. # 2. Redistributions in binary form must reproduce the above copyright
  14. #    notice, this list of conditions and the following disclaimer
  15. in the
  16. #    documentation and/or other materials provided with the
  17. distribution.
  18. # 3. All advertising materials mentioning features or use of this
  19. software
  20. #    must display the following acknowledgement:
  21. #     This product includes software developed by the University of
  22. #     California, Berkeley and its contributors.
  23. # 4. Neither the name of the University nor the names of its
  24. contributors
  25. #    may be used to endorse or promote products derived from this
  26. software
  27. #    without specific prior written permission.
  28. #
  29. # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS
  30. IS'' AND
  31. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  32. TO, THE
  33. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  34. # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS
  35. BE LIABLE
  36. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  37. CONSEQUENTIAL
  38. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  39. SUBSTITUTE GOODS
  40. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  41. INTERRUPTION)
  42. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  43. CONTRACT, STRICT
  44. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  45. IN ANY WAY
  46. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  47. POSSIBILITY OF
  48. # SUCH DAMAGE.
  49. # -
  50. # Portions Copyright (c) 1993 by Digital Equipment Corporation.
  51. #
  52. # Permission to use, copy, modify, and distribute this software
  53. for any
  54. # purpose with or without fee is hereby granted, provided that the
  55. above
  56. # copyright notice and this permission notice appear in all
  57. copies, and that
  58. # the name of Digital Equipment Corporation not be used in
  59. advertising or
  60. # publicity pertaining to distribution of the document or software
  61. without
  62. # specific, written prior permission.
  63. #
  64. # THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP.
  65. DISCLAIMS ALL
  66. # WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
  67. WARRANTIES
  68. # OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL
  69. EQUIPMENT
  70. # CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
  71. CONSEQUENTIAL
  72. # DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  73. DATA OR
  74. # PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  75. TORTIOUS
  76. # ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  77. PERFORMANCE OF THIS
  78. # SOFTWARE.
  79. # -
  80. # --Copyright--
  81.  
  82. HFILES= bitypes.h
  83.  
  84. DESTDIR=
  85. DESTINC= /usr/local/include
  86.  
  87. all depend:
  88.  
  89. distclean: clean
  90.  
  91. clean:
  92.     rm -f *~ *.BAK *.CKP *.orig time.h stat.h
  93.  
  94. links:
  95.     @set -e; ln -s SRC/*.h .
  96.  
  97. install: ${DESTDIR}${DESTINC}/sys
  98.     for x in ${HFILES}; do \
  99.         if [ -f $$x ]; then \
  100.             ${INSTALL} -c -m 444 $$x
  101. ${DESTDIR}${DESTINC}/sys/$$x;\
  102.         fi \
  103.     done
  104.  
  105. ${DESTDIR}${DESTINC}/sys:
  106.     mkdir ${DESTDIR}${DESTINC}/sys
  107.