home *** CD-ROM | disk | FTP | other *** search
/ Media Share 13 / mediashare_13.zip / mediashare_13 / ZIPPED / PROGRAM / DDJ9403A.ZIP / UC394.ZIP / RINGO.MAK < prev   
Makefile  |  1993-12-19  |  936b  |  35 lines

  1. #*******************************
  2. #  RINGO - Installable VxD
  3. #  RINGO.MAK - makefile
  4. #  by Alex Shmidt, Nov, 1993
  5. #*******************************
  6.  
  7. # Microsoft C 8.0 16-bit compiler and linker (command version of VC++)
  8. # Microsoft Assembler MASM 6.1
  9.  
  10. all: ringo.dll gateview.exe
  11.  
  12. ringo.obj: ringo.c 386.h callgate.h
  13.     cl -c -ASw -G2D -W3 -Zp -Ox ringo.c
  14.  
  15. callgate.obj: callgate.asm vmm.inc 386.inc ringo.inc
  16.      ml -c -W3 -Zm -Fl -Sg -If:\ddk31\include callgate.asm
  17.  
  18. ringo.dll: ringo.def ringo.obj callgate.obj
  19.     link @ringo.lnk
  20.     implib ringo.lib ringo.def
  21.     rc ringo.dll
  22.  
  23. #
  24. # build GateView
  25. #
  26. gateview.res: gateview.rc gateview.h
  27.     rc -r gateview.rc
  28.  
  29. gateview.obj: gateview.c ringo.h gateview.h gatehlp.h
  30.     cl -c -GEs -GA -W3 -Zp -Oxz gateview.c
  31.  
  32. gateview.exe: gateview.def gateview.obj ringo.lib gateview.res
  33.     link gateview,,,/NOD ringo libw slibcew, gateview.def
  34.     rc gateview.res
  35.