home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12442.ZIP / DI.MAK < prev    next >
Text File  |  1989-07-31  |  894b  |  39 lines

  1. #
  2. # make file    for    dipop, diserver, ls
  3. #
  4.  
  5. #COPT=/Lp /W3 /Zp /Zl /G2s /Ox /I$(INCLUDE)    /Alfw
  6. COPT=/Lp /W3 /Zpiel /G2s /I$(INCLUDE) /Alfw     /Od
  7.  
  8. di.obj: di.c di.h
  9.     cl $(COPT) /c di.c
  10.  
  11.  
  12. msgq.obj: msgq.c msgq.h
  13.     cl $(COPT) /c msgq.c
  14.  
  15.  
  16. button.obj: button.c button.h
  17.     cl $(COPT) /c button.c
  18.  
  19.  
  20. errexit.obj: errexit.c errexit.h
  21.     cl /c $(COPT) errexit.c
  22.  
  23.  
  24. dipop.exe: dipop.c dipop.mak di.obj di.h moudefs.h kbddefs.h \
  25.             dipop.h msgq.h msgq.obj button.obj button.h errexit.obj errexit.h
  26.     cl $(COPT) dipop.c di msgq button errexit /link /co /noi llibcmt
  27.     markexe    windowcompat dipop.exe
  28.  
  29.  
  30. diserver.exe: diserver.c diserver.mak di.h errexit.obj
  31.     cl $(COPT) diserver.c errexit /link /co /noi llibcmt
  32.     markexe windowcompat diserver.exe
  33.  
  34.  
  35. ls.exe: ls.c ls.mak di.obj di.h errexit.c errexit.h
  36.     cl $(COPT) ls.c di errexit /link /co /noi llibcmt
  37.     markexe windowcompat ls.exe
  38.  
  39.