home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / s12628.zip / PMACCESS.MAK < prev    next >
Text File  |  1990-07-01  |  783b  |  39 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 moudefs.h kbddefs.h msgq.h msgs.h mou.h \
  30.             kbd.h pmserver.h
  31.     cl /c $(COPT) pmaccess.c
  32.  
  33.  
  34. pmaccess.exe: pmaccess.obj pmaccess.mak pmaccess.def msgq.obj \
  35.               button.obj errexit.obj mou.obj kbd.obj
  36.     link @pmaccess.lnk
  37.  
  38.  
  39.