home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / makefile6 < prev    next >
Text File  |  1997-10-25  |  538b  |  26 lines

  1. Proj = DumpVars
  2.  
  3. !include <Win32.Mak>
  4.  
  5. All: DumpVars.Dll
  6.  
  7. DumpVars.Obj: DumpVars.cpp
  8.   $(cc) $(cdebug) $(cflags) $(cvarsdll) DumpVars.cpp
  9.  
  10. DumpVars.Exp: DumpVars.Def DumpVars.Obj
  11.   $(implib) -machine:$(CPU) -nologo -Def:DumpVars.Def -Out:DumpVars.Lib \
  12.     DumpVars.Obj
  13.  
  14. DumpVars.Dll: $*.Obj $*.Exp
  15.      $(link) $(linkdebug) $(dlllflags) -base:0x1C000000 -out:DumpVars.dll  \
  16.       DumpVars.Obj DumpVars.Exp  $(guilibsdll)
  17.  
  18. Clean:
  19.     del *.obj
  20.  
  21. Cleanall:
  22.     del  *.obj
  23.     del *.exp
  24.     del *.obj
  25.     del *.dll
  26.