home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / vjplusb / activex / inetsdk / samples / webpost / makefile
Encoding:
Makefile  |  1996-03-06  |  483 b   |  25 lines

  1. !ifdef clean
  2. makeopts = clean=1
  3. !endif # clean
  4.  
  5. !ifdef nodebug
  6. makeopts = $(makeopts) nodebug=1
  7. !endif
  8.  
  9. # If sample is installed, cd into that directory and recursively start nmake.
  10.  
  11. all:
  12. !IF EXIST (WbPost)
  13.  cd WbPost
  14.  @$(MAKE) -nologo /$(MAKEFLAGS) $(makeopts)
  15.  cd ..
  16. !ENDIF # exist (WbPost)
  17. !IF EXIST (WbProv)
  18.  cd WbProv
  19.  @$(MAKE) -nologo /$(MAKEFLAGS) $(makeopts)
  20.  cd ..
  21. !ENDIF # exist (WbProv)
  22.  
  23. Clean:
  24.     @nmake -nologo /$(MAKEFLAGS) $(makeopts) clean=1
  25.