home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / vjplusb / activex / inetsdk / samples / webpost / wbpost / makefile next >
Encoding:
Makefile  |  1996-07-08  |  434 b   |  18 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. APPVER=4.0
  4.  
  5. !include <win32.mak>
  6.  
  7. all: wbpost.exe
  8.  
  9. # Update the object file if necessary
  10.  
  11. wbpost.obj: wbpost.cpp
  12.     $(cc) $(cflags) $(cvars) $(cdebug) wbpost.cpp
  13.  
  14. # Update the executable file if necessary, and if so, add the resource back in.
  15.  
  16. wbpost.exe: wbpost.obj
  17.     $(link) $(linkdebug) $(conlflags) -out:wbpost.exe wbpost.obj $(conlibs) $(guilibs) webpost.lib 
  18.