#
#  NeXT common include file for Internal Makefiles
#  Copyright 1987, 1991, NeXT Computer, Inc.
#
#  Maintained by Doug Wiebe.
#
#  This Makefile has the rules used to build libraries.
#

# a little doc for when the "help" target is made
.DEFAULT help:
	@if (test "$<"); then		\
	    echo 'ERROR: Unrecognized Makefile target "$<"';	\
	fi
	@echo '  install		install the library and all associated files';\
	echo '  installsrc		install the source of the library';\
	echo '  optimized_install	install the optimized library';\
	echo '  profile_install	install the profile library';\
	echo '  debug_install		install the debugging library';\
	echo '  $(NAME)		make local copies of the library';\
	echo '  optimized		make the optimized copy of the library';\
	echo '  debug			make the debugging copy of the library';\
	echo '  profile		make the profiling copy of the library';\
	echo '  ofiles		make the library .o files';\
	echo '  optimized_ofiles	make the optimized library .o files';\
	echo '  debug_ofiles		make the debugging library .o files';\
	echo '  profile_ofiles	make the profiling library .o files';\
	echo '  clean			remove garbage files';\
	echo '  tidy			remove even more garbage files';\
	echo '  depend		update Makefile dependencies on include files';\
	echo '  diff			diffs current source against installed source';\
	echo '  lint			lint all the source';\
	echo '  print			print out all the source files';\
	echo '  size			get the size of all object files';\
	echo '  tags			run ctags on the source';\
	echo '  wc			get the line, word, and byte count of the source'

