home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / MSGDP206.SZH / MAKEFILE.OS2 < prev    next >
Text File  |  1990-12-16  |  3KB  |  122 lines

  1. ###############################################################
  2. #  Make file for Msged 2.06-OS/2 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) -L$(mode) -Oxaz -D__MSC__ -W4 -Zpel -UMSDOS -D__OS2__ -G2 -Gw -J -nologo
  14.  
  15. $(main)$(mode).exe :\
  16.  areas.obj \
  17.  bmg.obj \
  18.  config.obj \
  19.  date.obj \
  20.  dir.obj \
  21.  editmail.obj \
  22.  fido.obj \
  23.  maintmsg.obj \
  24.  makemsg.obj \
  25.  menu.obj \
  26.  msged.obj \
  27.  normal2.obj \
  28.  quick.obj \
  29.  readmail.obj \
  30.  scrnos2.obj \
  31.  settings.obj \
  32.  showmail.obj \
  33.  string.obj \
  34.  textfile.obj \
  35.  userlist.obj
  36.  D:\C600\BINB\LINK @<<file.lrf
  37. msged.obj/ST:4096/A:16/FAR/NOD/PACKD/MAP+
  38. readmail.obj+
  39. showmail.obj+
  40. editmail.obj+
  41. scrnos2.obj+
  42. areas.obj+
  43. maintmsg.obj+
  44. makemsg.obj+
  45. menu.obj+
  46. dir.obj+
  47. textfile.obj+
  48. config.obj+
  49. userlist.obj+
  50. bmg.obj+
  51. date.obj+
  52. settings.obj+
  53. fido.obj+
  54. quick.obj+
  55. string.obj+
  56. normal2.obj
  57. msgedp.exe
  58. msgedp.map
  59. Llibcep.lib os2.lib;
  60. <<
  61.  
  62. areas.obj : areas.c msged.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  63.     CL $(CFLAGS) -c $*.c
  64.  
  65. bmg.obj : bmg.c bmg.h
  66.     CL $(CFLAGS) -c $*.c
  67.  
  68. config.obj : config.c msged.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  69.     CL $(CFLAGS) -c $*.c
  70.  
  71. date.obj : date.c date.h msged.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  72.     CL $(CFLAGS) -c $*.c
  73.  
  74. dir.obj : dir.c
  75.     CL $(CFLAGS) -c $*.c
  76.  
  77. editmail.obj : editmail.c msged.h editmail.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  78.     CL $(CFLAGS) -c $*.c
  79.  
  80. fido.obj : fido.c msged.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h date.h
  81.     CL $(CFLAGS) -c $*.c
  82.  
  83. maintmsg.obj : maintmsg.c msged.h nedit.h screen.h fido.h quick.h date.h menu.h nohandl.h pascal.h
  84.     CL $(CFLAGS) -c $*.c
  85.  
  86. makemsg.obj : makemsg.c msged.h nedit.h screen.h fido.h quick.h date.h menu.h nohandl.h pascal.h
  87.     CL $(CFLAGS) -c $*.c
  88.  
  89. menu.obj : menu.c menu.h screen.h pascal.h
  90.     CL $(CFLAGS) -c $*.c
  91.  
  92. msged.obj : msged.c msged.h maincmds.h nedit.h screen.h fido.h quick.h bmg.h menu.h nohandl.h pascal.h
  93.     CL $(CFLAGS) -c $*.c
  94.  
  95. quick.obj : quick.c msged.h nedit.h screen.h fido.h quick.h date.h menu.h nohandl.h pascal.h
  96.     CL $(CFLAGS) -c $*.c
  97.  
  98. readmail.obj : readmail.c msged.h date.h nedit.h screen.h fido.h quick.h bmg.h menu.h nohandl.h pascal.h
  99.     CL $(CFLAGS) -c $*.c
  100.  
  101. scrnos2.obj : scrnos2.c screen.h pascal.h
  102.     CL $(CFLAGS) -c $*.c
  103.  
  104. settings.obj : settings.c msged.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  105.     CL $(CFLAGS) -c $*.c
  106.  
  107. showmail.obj : showmail.c msged.h date.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  108.     CL $(CFLAGS) -c $*.c
  109.  
  110. string.obj : string.c
  111.     CL $(CFLAGS) -c $*.c
  112.  
  113. textfile.obj : textfile.c msged.h nedit.h screen.h fido.h quick.h date.h menu.h nohandl.h pascal.h
  114.     CL $(CFLAGS) -c $*.c
  115.  
  116. userlist.obj : userlist.c msged.h nedit.h screen.h fido.h quick.h menu.h nohandl.h pascal.h
  117.     CL $(CFLAGS) -c $*.c
  118.  
  119. normal2.obj : normal2.asm
  120.     MASM /DMem_$(model) $?;
  121.  
  122.