This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats/dl/Makefile

34 lines
664 B
Makefile
Raw Permalink Normal View History

2002-03-15 12:21:39 +00:00
include ../Makefile.inc
default: all
modules: all
2002-03-15 12:34:10 +00:00
install:
@for i in $(MODULES) ""; do \
if [ "x$$i" != "x" ]; then \
echo "===> $(SDP)modules/$$i"; \
(cd $$i && $(MAKE) $@) || exit 1; \
echo "<=== $(SDP)modules/$$i"; \
fi; \
done
2002-03-15 12:21:39 +00:00
all clean ::
@for i in $(MODULES) ""; do \
if [ "x$$i" != "x" ]; then \
echo "===> $(SDP)modules/$$i"; \
(cd $$i && $(MAKE) $@) || exit 1; \
echo "<=== $(SDP)modules/$$i"; \
fi; \
done
all distclean ::
@for i in $(MODULES) ""; do \
if [ "x$$i" != "x" ]; then \
echo "===> $(SDP)modules/$$i"; \
(cd $$i && $(MAKE) $@) || exit 1; \
echo "<=== $(SDP)modules/$$i"; \
fi; \
done