# # This is a basic makefile that uses a flat directory structure. It could be # expanded to support multiple subdirectories and/or libraries # #.SILENT: all lib test steril clean tar dist link .DEFAULT TOPDIR=. ROOTDIR=true SUBLIBFILES=$(LIBFILES_$(PWD)) all: systarget include Makefile.common depend dep .depend:: @echo $(VIO)[MAKE]$(NOR) $(SRCDIR) @for dir in $(SRCDIRS); do \ (cd $$dir; $(MAKE) depend) \ done systarget: lib test: lib @echo $(VIO)[MAKE]$(NOR) src @$(MAKE) -C src test