home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / os / bsdss4.tz / bsdss4 / bsdss / server / include / Makefile
Encoding:
Makefile  |  1992-07-09  |  1.6 KB  |  58 lines

  1. #
  2. # Mach Operating System
  3. # Copyright (c) 1991 Carnegie Mellon University
  4. # All Rights Reserved.
  5. # Permission to use, copy, modify and distribute this software and its
  6. # documentation is hereby granted, provided that both the copyright
  7. # notice and this permission notice appear in all copies of the
  8. # software, derivative works or modified versions, and any portions
  9. # thereof, and that both notices appear in supporting documentation.
  10. #
  11. # CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
  12. # CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
  13. # ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
  14. #
  15. # Carnegie Mellon requests users of this software to return to
  16. #
  17. #  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
  18. #  School of Computer Science
  19. #  Carnegie Mellon University
  20. #  Pittsburgh PA 15213-3890
  21. #
  22. # any improvements or extensions that they make and grant Carnegie Mellon
  23. # the rights to redistribute these changes.
  24. #
  25. #
  26. # HISTORY
  27. # $Log:    Makefile,v $
  28. # Revision 2.2  92/06/25  17:28:34  mrt
  29. #     Created for ODE make
  30. #     [92/06/16  15:09:11  mrt]
  31. #
  32. # $EndLog$
  33.  
  34. #  This makefile creates a symlink named machine to the
  35. #  directory ${KERN_MACHINE_DIR} in the exports/usr/include
  36. #  area. ${KERN_MACHINE_DIR} is usually the same as ${target_machine}
  37. #  but is given a variable of its own, for machines where it might be
  38. #  different.
  39. #
  40.  
  41. VPATH        = /usr/include
  42.  
  43. EXPINC_SUBDIRS    = ${KERN_MACHINE_DIR}
  44.  
  45. OTHERS        = machine
  46.  
  47. INCLUDES    = ${OTHERS}
  48.  
  49. EXPDIR        = /bsdss/
  50.  
  51. .include <${RULES_MK}>
  52.  
  53. machine: ${ALWAYS}
  54.     ${RM} ${_RMFLAGS_} machine
  55.     ${LN} -s ${KERN_MACHINE_DIR} machine
  56.