home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / shell / shellext / makefile < prev    next >
Encoding:
Makefile  |  1995-02-22  |  656 b   |  23 lines

  1. TARGETOS=WIN95
  2. APPVER=4.0
  3.  
  4. !include <win32.mak>
  5.  
  6. all: shellext.dll
  7.  
  8. shellext.dll:   COPYHOOK.OBJ    \
  9.                 CTXMENU.obj    \
  10.                 ICONHDLR.obj    \
  11.                 PROPSHET.obj    \
  12.                 SHELLEXT.obj    \
  13.                 SHEXINIT.obj    \
  14.                 shellext.res 
  15.   $(implib) -machine:$(CPU) -def:shellext.def $** -out:shellext.lib
  16.   $(link) $(linkdebug) $(dlllflags) -base:0x1C000000 -out:$*.dll $** $(olelibsdll) shell32.lib shellext.lib comctl32.lib shellext.exp
  17.  
  18. .cpp.obj:
  19.     $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.cpp
  20.  
  21. shellext.res: shellext.rc
  22.     $(rc) $(rcflags) $(rcvars)  shellext.rc
  23.