home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mitsch75.zip / scheme-7_5_17-src.zip / scheme-7.5.17 / src / microcode / ntutl / scheme16.mak < prev    next >
Encoding:
Makefile  |  1996-03-23  |  2.0 KB  |  54 lines

  1. ### -*- Fundamental -*-
  2. ###
  3. ###    $Id: scheme16.mak,v 1.4 1996/03/23 19:24:14 adams Exp $
  4. ###
  5. ###    Copyright (c) 1996 Massachusetts Institute of Technology
  6. ###
  7. ###    This material as developed by the Scheme project at the
  8. ###    Massachusetts Institute of Technology, Department of
  9. ###    Electrical Engineering and Computer Science.  Permission to
  10. ###    copy this software, to redistribute it, and to use it for any
  11. ###    purpose is granted, subject to the following restrictions and
  12. ###    understandings.
  13. ###
  14. ###    1. Any copy made of this software must include this copyright
  15. ###    notice in full.
  16. ###
  17. ###    2. Users of this software agree to make their best efforts (a)
  18. ###    to return to the MIT Scheme project any improvements or
  19. ###    extensions that they make, so that these may be included in
  20. ###    future releases; and (b) to inform MIT of noteworthy uses of
  21. ###    this software.
  22. ###
  23. ###    3. All materials developed as a consequence of the use of this
  24. ###    software shall duly acknowledge such use, in accordance with
  25. ###    the usual standards of acknowledging credit in academic
  26. ###    research.
  27. ###
  28. ###    4. MIT has made no warrantee or representation that the
  29. ###    operation of this software will be error-free, and MIT is
  30. ###    under no obligation to provide any services, by way of
  31. ###    maintenance, update, or otherwise.
  32. ###
  33. ###    5. In conjunction with products arising from the use of this
  34. ###    material, there shall be no use of the name of the
  35. ###    Massachusetts Institute of Technology nor of any adaptation
  36. ###    thereof in any advertising, promotional, or sales literature
  37. ###    without prior written consent from MIT in each case.
  38. ###
  39.  
  40. ####    Makefile for the 16-bit component of the MIT Scheme Win32 support
  41.  
  42. all: scheme16.dll
  43.  
  44. # These have to be compiled by a 16-bit compiler (e.g. C700)
  45. # with the Win16 SDK!
  46.  
  47. scheme16.obj: scheme16.c ntscmlib.h
  48.     cl /c /ASw /G2 /Gsw /Ow /W2 /Zp1 scheme16.c
  49.  
  50. scheme16.dll: scheme16.obj scheme16.def
  51.     link scheme16.obj, scheme16.dll,scheme16.map /map, \
  52.          w32sut16.lib mdllcew.lib libw.lib/noe/nod,scheme16.def
  53.  
  54.