home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / ckc095.zip / ckoker.mak < prev    next >
Text File  |  1989-08-09  |  2KB  |  75 lines

  1. # CKOKER.MAK, Version 1.00, 30 June 1988
  2. #
  3. # -- Makefile to build C-Kermit for OS/2 --
  4. #
  5. # Before proceeding, read the instructions below, and also read the file
  6. # ckoker.bwr (the "beware file") if it exists.  Then run MAKE.  Note that
  7. # the MARKEXE program may return an error code -- this can be ignored.
  8. #
  9. # This make file assumes the use of the Microsoft C compiler version 5.1.
  10. # The sources work with the Microsoft OS/2 Software Developer's Kit version
  11. # 1.06 (or later).  You'll need the file SETARGV.OBJ as well as the libraries.
  12. #
  13. # The result is a runnable program called "ckoker.exe" in the current directory.
  14. # After satisfactory testing, you can rename ckoker to "kermit.exe" and put it
  15. # in your utilities directory (or wherever).
  16. #
  17. #
  18.  
  19. #---------- Macros:
  20.  
  21. # If a debug log is (is not) wanted, comment out the first (second) line below.
  22. DEBUG=
  23. #DEBUG=/D DEBUG
  24.  
  25. # If a transaction log is (is not) wanted, comment out the first (second) line below.
  26. #TLOG=
  27. TLOG=/D TLOG
  28.  
  29. # If Codeview support is (is not) wanted, comment out the first (second) line below.
  30. CVIEW=/O
  31. #CVIEW=/Zi /Od
  32.  
  33. CMPLFLAGS=/Alfu /FPc /c /Zp $(CVIEW) /D OS2 /D US_CHAR /U MSDOS $(DEBUG) $(TLOG)
  34.  
  35. #---------- Inference rules:
  36.  
  37. .c.obj:
  38.     cl $(CMPLFLAGS) $*.c
  39.  
  40. #---------- Dependencies:
  41.  
  42. ckcmai.obj: ckcmai.c ckcker.h ckcdeb.h ckcsym.h
  43.  
  44. ckuusr.obj: ckuusr.c ckucmd.h ckcker.h ckuusr.h ckcdeb.h
  45.  
  46. ckuus2.obj: ckuus2.c ckucmd.h ckcker.h ckuusr.h ckcdeb.h
  47.  
  48. ckuus3.obj: ckuus3.c ckucmd.h ckcker.h ckuusr.h ckcdeb.h
  49.  
  50. ckucmd.obj: ckucmd.c ckucmd.h ckcdeb.h
  51.  
  52. ckcpro.obj: ckcpro.c ckcker.h ckcdeb.h
  53.  
  54. ckcfns.obj: ckcfns.c ckcker.h ckcdeb.h ckcsym.h
  55.  
  56. ckcfn2.obj: ckcfn2.c ckcker.h ckcdeb.h ckcsym.h
  57.  
  58. ckofio.obj: ckofio.c ckcker.h ckcdeb.h
  59.  
  60. ckotio.obj: ckotio.c ckcdeb.h
  61.  
  62. ckocon.obj: ckocon.c ckcker.h ckcdeb.h
  63.  
  64. ckudia.obj: ckudia.c ckcker.h ckcdeb.h ckucmd.h
  65.  
  66. ckuscr.obj: ckuscr.c ckcker.h ckcdeb.h
  67.  
  68. ckoker.exe:    ckcmai.obj ckucmd.obj ckuusr.obj ckuus2.obj ckuus3.obj \
  69.         ckcpro.obj ckcfns.obj ckcfn2.obj ckocon.obj ckotio.obj \
  70.         ckofio.obj ckudia.obj ckuscr.obj
  71.     LINK @ckoker.lnk
  72.     MARKEXE windowcompat ckoker.exe
  73.  
  74.  
  75.