home *** CD-ROM | disk | FTP | other *** search
/ The HTML Web Publisher's Construction Kit / HTMLWPCK.ISO / unix / servers / httpd_14 / source.z / source / httpd_1.4.1 / Makefile next >
Encoding:
Makefile  |  1995-05-18  |  1.4 KB  |  52 lines

  1.  
  2. all:
  3.     @echo Please choose a system type.
  4.     @echo Valid types are ibm, sunos, sgi, decmips, decaxp, hp-cc,
  5.     @echo hp-gcc, solaris, netbsd, svr4, linux, aux
  6.     @echo If you do not have one of these systems, you must edit
  7.     @echo src/Makefile, cgi-src/Makefile, and support/Makefile
  8.  
  9. clean:
  10.     (cd src ; make clean)
  11.     (cd cgi-src ; make clean)
  12.     (cd support ; make clean)
  13.  
  14. tar-clean: clean
  15.     rm -f httpd
  16.  
  17. aux:
  18.     cd src ; make aux ; cd ../cgi-src ; make aux ; cd ../support ; make aux
  19.  
  20. ibm:
  21.     cd src ; make ibm ; cd ../cgi-src ; make ibm ; cd ../support ; make ibm
  22.  
  23. sunos:
  24.     cd src ; make sunos ; cd ../cgi-src ; make sunos ; cd ../support ; make sunos
  25.  
  26. solaris:
  27.     cd src ; make solaris ; cd ../cgi-src ; make solaris ; cd ../support ; make solaris 
  28.  
  29. sgi:
  30.     cd src ; make sgi ; cd ../cgi-src ; make sgi ; cd ../support ; make sgi
  31.  
  32. decmips:
  33.     cd src ; make decmips ; cd ../cgi-src ; make decmips ; cd ../support ; make decmips
  34.  
  35. decaxp:
  36.     cd src ; make decaxp ; cd ../cgi-src ; make decaxp ; cd ../support ; make decaxp
  37.  
  38. hp-gcc:
  39.     cd src ; make hp-gcc ; cd ../cgi-src ; make hp-gcc ; cd ../support ; make hp-gcc
  40.  
  41. hp-cc:
  42.     cd src ; make hp-cc ; cd ../cgi-src ; make hp-cc ; cd ../support ; make hp-cc
  43.  
  44. netbsd:
  45.     cd src ; make netbsd ; cd ../cgi-src ; make netbsd ; cd ../support ; make netbsd
  46.  
  47. linux:
  48.     cd src ; make linux ; cd ../cgi-src ; make linux ; cd ../support ; make linux
  49.  
  50. svr4:
  51.     cd src ; make svr4 ; cd ../cgi-src ; make svr4 ; cd ../support ; make svr4
  52.