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 / fileview / makefile < prev    next >
Encoding:
Makefile  |  1995-02-22  |  683 b   |  25 lines

  1. TARGETOS=WIN95
  2. APPVER=4.0
  3.  
  4. !include <win32.mak>
  5.  
  6. all: fvtext.dll
  7.  
  8. fvtext.dll:   CSTATHLP.obj \
  9.                 CSTRTABL.obj \
  10.                 FILEVIEW.obj \
  11.                 FVINIT.obj   \
  12.                 FVPROC.obj   \
  13.                 FVTEXT.obj   \
  14.                 IFILEVW.obj  \
  15.                 IPERFILE.obj \
  16.                 fvtext.res 
  17.   $(implib) -machine:$(CPU) -def:fvtext.def $** -out:fvtext.lib
  18.   $(link) $(linkdebug) $(dlllflags) -base:0x1C000000 -out:$*.dll $** $(olelibsdll) shell32.lib fvtext.lib comctl32.lib fvtext.exp
  19.  
  20. .cpp.obj:
  21.     $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.cpp
  22.  
  23. fvtext.res: fvtext.rc
  24.     $(rc) $(rcflags) $(rcvars)  fvtext.rc
  25.