home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pine / imap-3.0 / ANSI / c-client / makefile.mac < prev    next >
Encoding:
Makefile  |  1992-02-10  |  2.1 KB  |  55 lines

  1. # Program:    Portable C client makefile -- Macintosh (MPW-C) version
  2. #
  3. # Author:    Gavin Eadie
  4. #        University of Michigan
  5. #
  6. # Date:        6 February 1992
  7. # Last Edited:    10 February 1992
  8. #
  9. # Copyright 1992 by the University of Washington
  10. #
  11. #  Permission to use, copy, modify, and distribute this software and its
  12. # documentation for any purpose and without fee is hereby granted, provided
  13. # that the above copyright notice appears in all copies and that both the
  14. # above copyright notice and this permission notice appear in supporting
  15. # documentation, and that the name of the University of Washington not be
  16. # used in advertising or publicity pertaining to distribution of the software
  17. # without specific, written prior permission.  This software is made
  18. # available "as is", and
  19. # THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  20. # WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  21. # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  22. # NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  23. # INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  24. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  25. # (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  26. # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  27. #
  28. #########
  29. #  You need to define TCP_Folder to be the name of the folder in
  30. #  which the MacTCP includes and the dnr.c source files live.
  31.  
  32. #  You also need to replace [d] with the character <option-d> that
  33. #  is used in MPW to force a 'literal-next' function, allowing the
  34. #  lines below to be wrapped AND [f] with <option-f> ...
  35.  
  36. COptions = -r -i "{TCP_Folder}"
  37.  
  38. MTest.OBJ = mtest.c.o c-client.lib
  39.  
  40. MTest [f][f] Makefile {MTest.OBJ}
  41.    Link -d -c 'MPS ' -t MPST [d]
  42.       {MTest.OBJ} [d]
  43.       "{CLibraries}"StdClib.o [d]
  44.       "{Libraries}"Stubs.o [d]
  45.       "{Libraries}"Runtime.o [d]
  46.       "{Libraries}"Interface.o [d]
  47.       -o MTest
  48.  
  49.  
  50. Client.OBJ = mail.c.o imap2.c.o rfc822.c.o misc.c.o osdep.c.o [d]
  51.              smtp.c.o nntp.c.o "{TCP_Folder}"dnr.c.o
  52.  
  53. c-client.lib [f][f] Makefile {Client.OBJ}
  54.    Lib {Client.OBJ} -o c-client.lib
  55.