blob: 0aaccfadf8ee4ddf066463f2b2e3e35d4155845e [file] [log] [blame]
# This is the top level of make. We only deal with the common
# directories.
DIRS= lib rsplib
all depend clean clobber release:
@for i in $(DIRS); do \
echo making $@ in $$i; \
(cd $$i; $(MAKE) $@); \
if [ $$? != 0 ]; then \
echo Failed to make $@ in $$i; \
exit 1; \
fi; \
done
install:
@echo You need to make $@ in the application directory.