home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / samples / sample5 / Watcom.mak < prev   
Text File  |  1996-10-25  |  435b  |  16 lines

  1. #
  2. # Makefile for OOL sample 5 - Watcom C/C++
  3. #
  4.  
  5. !include ..\Common.inc
  6.  
  7. sample5.exe: sample5.obj sample5.dll
  8.         @$(LD) name sample5.exe $(LDFLAGS) file sample5.obj
  9.  
  10. sample5.dll: sample5.res
  11.         @echo making resource dll
  12.         @wpp386 -bm -bd -bt=os2 -mf -4r -otexan -zq empty.cpp
  13.         @wlink name sample5.dll format os2 lx dll option protmode, quiet file empty.obj
  14.         @rc -n sample5.res sample5.dll
  15.  
  16.