
#all:
#	(cd src ; make)
#	(cd htbin/src ; make)

#tar: 
all:
	(cd src ; make tar)
	(cd htbin/src ; make tar)

clean:
	(cd src ; make clean)
	(cd htbin/src ; make clean)

ibm:
	tar cvf tar/httpd_rs6000.tar httpd conf htbin logs README
	compress tar/httpd_rs6000.tar

sun:
	tar cvf tar/httpd_sun4.tar httpd conf htbin logs README
	compress tar/httpd_sun4.tar

sgi:
	tar cvf tar/httpd_sgi.tar httpd conf htbin logs README
	compress tar/httpd_sgi.tar

decmips:
	tar cvf tar/httpd_decmips.tar httpd conf htbin logs README
	compress tar/httpd_decmips.tar

decaxp:
	tar cvf tar/httpd_decaxp.tar httpd conf htbin logs README
	compress tar/httpd_decaxp.tar

source:
	tar cvf tar/httpd_src.tar Makefile src conf htbin logs README
	compress tar/httpd_src.tar

