home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12518.ZIP / PMACCESS.MAK < prev    next >
Text File  |  1989-12-11  |  846b  |  41 lines

  1. #
  2. # make file for pmaccess.c
  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.  
  9. kbd.obj: kbd.c kbd.h msgs.h msgq.h kbddefs.h button.h
  10.     cl $(COPT) /c kbd.c
  11.  
  12.  
  13. mou.obj: mou.c mou.h msgs.h msgq.h moudefs.h button.h errexit.h
  14.     cl $(COPT) /c mou.c
  15.  
  16.  
  17. msgq.obj: msgq.c msgq.h
  18.     cl $(COPT) /c msgq.c
  19.  
  20.  
  21. button.obj: button.c button.h
  22.     cl $(COPT) /c button.c
  23.  
  24.  
  25. errexit.obj: errexit.c errexit.h
  26.     cl /c $(COPT) errexit.c
  27.  
  28.  
  29. pmaccess.obj: pmaccess.c pmaccess.h moudefs.h kbddefs.h msgq.h msgs.h mou.h kbd.h
  30.     cl /c $(COPT) pmaccess.c
  31.  
  32.  
  33. pmaccess.exe: pmaccess.c pmaccess.mak msgq.obj button.obj errexit.obj \
  34.             mou.obj kbd.obj
  35.     cl $(COPT) pmaccess msgq button errexit kbd mou /link /co /noi llibcmt
  36.     markexe windowcompat pmaccess.exe
  37.  
  38.  
  39.  
  40.  
  41.