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.dbw < prev    next >
Encoding:
Makefile  |  1993-05-24  |  2.0 KB  |  49 lines

  1. # Program:    Portable C client makefile -- MS-DOS (B&W) version
  2. #
  3. # Author:    Ken Bobey
  4. #
  5. # Date:        24 March 1992
  6. # Last Edited:    24 May 1993
  7. #
  8. # Copyright 1993 by the University of Washington
  9. #
  10. #  Permission to use, copy, modify, and distribute this software and its
  11. # documentation for any purpose and without fee is hereby granted, provided
  12. # that the above copyright notice appears in all copies and that both the
  13. # above copyright notice and this permission notice appear in supporting
  14. # documentation, and that the name of the University of Washington not be
  15. # used in advertising or publicity pertaining to distribution of the software
  16. # without specific, written prior permission.  This software is made
  17. # available "as is", and
  18. # THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  19. # WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  20. # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  21. # NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  22. # INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  23. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  24. # (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  25. # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  26.  
  27.  
  28. # Use these for Windows 3.0 LARGE MODEL
  29. CC = p:\x\msc6\bin\cl
  30. LIB = p:\x\msc6\bin\lib
  31. LINK = p:\x\msc6\bin\link
  32. CFLAGS = -c -AL -Gsw -Zei -Ip:\x\msc6\include -Ip:\x\bwtcp3\include
  33. LFLAGS = /NOE /NOI /ST:20000
  34. LLIBS = cclient.lib p:\x\bwtcp3\lib\lbwtcp p:\x\msc6\lib\llibce
  35.  
  36. cfiles = nntp.c imap2.c dawz.c nntpcdos.c dummydos.c smtp.c misc.c rfc822.c sm_dos.c mail.c mtest.c os_dbw.c
  37.  
  38. objfiles = nntp.obj imap2.obj dawz.obj nntpcdos.obj dummydos.obj smtp.obj misc.obj rfc822.obj sm_dos.c mail.obj mtest.obj os_dbw.obj
  39.  
  40. mtest: mtest.obj cclient.lib
  41.      $(LINK) $(LFLAGS) mtest,mtest.exe,,$(LLIBS),,
  42.  
  43. cclient.lib: $(objfiles)
  44.      erase cclient.lib
  45.      $(LIB) cclient.lib +nntp +imap2 +dawz +nntpcdos +dummydos +smtp +misc +rfc822 +sm_dos +mail +os_dbw,,
  46.  
  47. .c.obj:
  48.     $(CC) $(CFLAGS) $*.c
  49.