SHELL=/bin/sh

###
###
include $(BUILDHOME)/buildprefs/make.pre
###
###

SUBDIRS = lib find xargs locate

install: FORCE
	@$(INIT_REPORT)
	@for dir in $(SUBDIRS); do \
		$(MAKE) -C $$dir $(PARALLELMFLAGS) $@; $(CHECK_STATUS); \
	done
	$(REPORT_STATUS)

#
# This DEFAULT target will pass along commands like "make clean" and
# "make deps"
#
.DEFAULT:
	@for dir in $(SUBDIRS); do \
		$(MAKE) -C $$dir $(PARALLELMFLAGS) $@; \
	done

# empty rule. Things that depend on this rule will always get triggered.
FORCE:
