#
#	Make all WWW Code
#
# (c) COPYRIGHT MIT 1995.
# Please first read the full copyright statement in the file COPYRIGH.
#
#  See the README and the documentation on the web.

all :
	./BUILD

clean:
#	rm -f *[~#] */*[~#] */*/*[~#]
	rm -f *.o */*.o */*/*.o
	rm -f *.old */*.old */*/*.old
	rm -f core */core */*/*core

clobber: clean
	rm -f Library/[a-z0-9]*/libwww.a
	rm -f Library/[a-z0-9]*/libwww_pure_*.a
	rm -f LineMode/[a-z0-9]*/www*
	rm -f LineMode/[a-z0-9]*/*_pure_*.o
	rm -f ComLine/[a-z0-9]*/w3c*
	rm -f ComLine/[a-z0-9]*/*_pure_*.o
	rm -f MiniServ/[a-z0-9]*/webd*
	rm -f MiniServ/[a-z0-9]*/*_pure_*.o
	rm -f Robot/[a-z0-9]*/webbot*
	rm -f Robot/[a-z0-9]*/*_pure_*.o
	rm -f Daemon/[a-z0-9]*/httpd*
	rm -f Daemon/[a-z0-9]*/*_pure_*.o
	rm -f Daemon/[a-z0-9]*/htimage
	rm -f Daemon/[a-z0-9]*/htadm
	rm -f Daemon/[a-z0-9]*/cgiparse
	rm -f Daemon/[a-z0-9]*/cgiutils

