home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / MSGDP206.SZH / MAKEFILE.DBG < prev    next >
Text File  |  1990-11-28  |  4KB  |  123 lines

  1. ###############################################################
  2. #  Make file for Msged 2.00 using IBM MAKE/2 Ver 1.1          #
  3. #                                                             #
  4. #  use MAKE MSGED.EXE                                         #
  5. #  or  MAKE MSGEDP.EXE                                        #
  6. #                                                             #
  7. ###############################################################
  8.  
  9. main=msged
  10. model=L            # use large model when debugging -- bugs JUMP out at you
  11. mode=p
  12.  
  13. #CFLAGS = -A$(model) -Oxrn -D__MSC__ -Lp -W3 -Zpel -UMSDOS -D__OS2__ -G2 -Gw -nologo
  14. CFLAGS = -A$(model) -L$(mode) -B1 C1L.EXE -Od -D__MSC__ -W4 -Zeip -UMSDOS -D__OS2__ -G2 -nologo -J
  15.  
  16. $(main)$(mode).exe :\
  17.  areas.obj \
  18.  bmg.obj \
  19.  config.obj \
  20.  date.obj \
  21.  dir.obj \
  22.  editmail.obj \
  23.  fido.obj \
  24.  maintmsg.obj \
  25.  makemsg.obj \
  26.  menu.obj \
  27.  msged.obj \
  28.  normal2.obj \
  29.  quick.obj \
  30.  readmail.obj \
  31.  scrnos2.obj \
  32.  settings.obj \
  33.  showmail.obj \
  34.  string.obj \
  35.  textfile.obj \
  36.  userlist.obj
  37.  D:\C600\BINB\LINK @<<file.lrf
  38. msged.obj/ST:4096/CO/LI/MAP+
  39. readmail.obj+
  40. showmail.obj+
  41. editmail.obj+
  42. scrnos2.obj+
  43. areas.obj+
  44. maintmsg.obj+
  45. makemsg.obj+
  46. menu.obj+
  47. dir.obj+
  48. textfile.obj+
  49. config.obj+
  50. userlist.obj+
  51. bmg.obj+
  52. date.obj+
  53. settings.obj+
  54. fido.obj+
  55. quick.obj+
  56. string.obj+
  57. normal2.obj
  58. msgedp.exe
  59. msgedp.map
  60. Llibcep.lib os2.lib;
  61. <<
  62.  
  63. areas.obj : areas.c msged.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  64.     CL $(CFLAGS) -c $*.c
  65.  
  66. bmg.obj : bmg.c bmg.h
  67.     CL $(CFLAGS) -c $*.c
  68.  
  69. config.obj : config.c msged.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  70.     CL $(CFLAGS) -c $*.c
  71.  
  72. date.obj : date.c date.h msged.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  73.     CL $(CFLAGS) -c $*.c
  74.  
  75. dir.obj : dir.c
  76.     CL $(CFLAGS) -c $*.c
  77.  
  78. editmail.obj : editmail.c msged.h editmail.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  79.     CL $(CFLAGS) -c $*.c
  80.  
  81. fido.obj : fido.c msged.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h date.h
  82.     CL $(CFLAGS) -c $*.c
  83.  
  84. maintmsg.obj : maintmsg.c msged.h nedit.h screen.h fido.h quick.h date.h menu.h nohandl.h pascal.h
  85.     CL $(CFLAGS) -c $*.c
  86.  
  87. makemsg.obj : makemsg.c msged.h nedit.h screen.h fido.h quick.h date.h menu.h nohandl.h pascal.h
  88.     CL $(CFLAGS) -c $*.c
  89.  
  90. menu.obj : menu.c menu.h screen.h pascal.h
  91.     CL $(CFLAGS) -c $*.c
  92.  
  93. msged.obj : msged.c msged.h maincmds.h nedit.h screen.h fido.h quick.h bmg.h menu.h nohandl.h pascal.h
  94.     CL $(CFLAGS) -c $*.c
  95.  
  96. quick.obj : quick.c msged.h nedit.h screen.h fido.h quick.h date.h menu.h nohandl.h pascal.h
  97.     CL $(CFLAGS) -c $*.c
  98.  
  99. readmail.obj : readmail.c msged.h date.h nedit.h screen.h fido.h quick.h bmg.h menu.h nohandl.h pascal.h
  100.     CL $(CFLAGS) -c $*.c
  101.  
  102. scrnos2.obj : scrnos2.c screen.h pascal.h
  103.     CL $(CFLAGS) -c $*.c
  104.  
  105. settings.obj : settings.c msged.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  106.     CL $(CFLAGS) -c $*.c
  107.  
  108. showmail.obj : showmail.c msged.h date.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  109.     CL $(CFLAGS) -c $*.c
  110.  
  111. string.obj : string.c
  112.     CL $(CFLAGS) -c $*.c
  113.  
  114. textfile.obj : textfile.c msged.h nedit.h screen.h fido.h quick.h date.h menu.h nohandl.h pascal.h
  115.     CL $(CFLAGS) -c $*.c
  116.  
  117. userlist.obj : userlist.c msged.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  118.     CL $(CFLAGS) -c $*.c
  119.  
  120. normal2.obj : normal2.asm
  121.     MASM /DMem_$(model) $?;
  122.  
  123.