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 / fparser / makefile < prev    next >
Encoding:
Makefile  |  1995-02-14  |  801 b   |  36 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. TARGETOS=WIN95
  4. APPVER=4.0
  5.  
  6. !include <win32.mak>
  7.  
  8. all: vs4asc.dll
  9.  
  10. # Update the object files if necessary
  11.  
  12. vsd_asc.obj: vsd_asc.c
  13.     $(cc) $(cflags) $(cvarsdll) $(cdebug) vsd_asc.c
  14.  
  15. vs_asc.obj: vs_asc.c
  16.     $(cc) $(cflags) $(cvarsdll) $(cdebug) vs_asc.c
  17.  
  18. # Update the import library
  19.  
  20. vs_asc.lib: vs_asc.obj vsasc.def
  21.     $(implib) -machine:$(CPU)     \
  22.     -def:vsasc.def        \
  23.     vs_asc.obj             \
  24.     -out:vs_asc.lib
  25.  
  26. # Update the dynamic link library
  27.  
  28. vs4asc.dll: vs_asc.lib vs_asc.obj vsd_asc.obj vsasc.def
  29.     $(link) $(linkdebug) $(dlllflags)     \
  30.     -base:0x1C000000  \
  31.     -out:vs_asc.dll   \
  32.     -ignore:4077      \
  33.     vs_asc.exp vs_asc.obj vsd_asc.obj $(guilibsdll) uuid.lib shell32.lib comctl32.lib
  34.  
  35.  
  36.