home *** CD-ROM | disk | FTP | other *** search
/ Chip Special: HTML & Java / Chip-Special_1997-01_HTML-a-Java.bin / actvx31.sdk / coresdk / inetsdk / samples / wininet / makefile
Encoding:
Makefile  |  1996-10-16  |  608 b   |  33 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 (HTTPDump)
  13.  cd HTTPDump
  14.  @$(MAKE) -nologo /$(MAKEFLAGS) $(makeopts)
  15.  cd ..
  16. !ENDIF # exist (HTTPDump)
  17.  
  18. !IF EXIST (FtpJr)
  19.  cd FtpJr
  20.  @$(MAKE) -nologo /$(MAKEFLAGS) $(makeopts)
  21.  cd ..
  22. !ENDIF # exist (FtpJr)
  23.  
  24. !IF EXIST (HTTPAuth)
  25.  cd HTTPAuth
  26.  @$(MAKE) -nologo /$(MAKEFLAGS) $(makeopts)
  27.  cd ..
  28. !ENDIF # exist (HTTPAuth)
  29.  
  30.  
  31. Clean:
  32.     @nmake -nologo /$(MAKEFLAGS) $(makeopts) clean=1
  33.