echo "Making all in $$dir"; \
(cd $$dir; $(MAKE) all) || exit 1; \
done
+ @if [ `uname` = Linux ]; then \
+ echo; \
+ echo " !!!! WARNING !!!!"; \
+ echo ; \
+ echo "The default location for the dhcpd.leases file has \
+changed!!!"; \
+ echo; \
+ echo "It is now in /var/state/dhcp. If you are not"; \
+ echo "installing this for the first time, please move your"; \
+ echo "lease database to the new location before using this"; \
+ echo "software."; \
+ echo; \
+ echo " !!!! WARNING !!!!"; \
+ echo; \
+ fi
install:
@for dir in ${SUBDIRS}; do \
echo "Installing in $$dir"; \
(cd $$dir; $(MAKE) install) || exit 1; \
done
+ @if [ `uname` = Linux ]; then \
+ echo; \
+ echo " !!!! WARNING !!!!"; \
+ echo ; \
+ echo "The default location for the dhcpd.leases file has \
+changed!!!"; \
+ echo; \
+ echo "It is now in /var/state/dhcp. If you are not"; \
+ echo "installing this for the first time, please move your"; \
+ echo "lease database to the new location before using this"; \
+ echo "software."; \
+ echo; \
+ echo " !!!! WARNING !!!!"; \
+ echo; \
+ fi
clean:
@for dir in ${SUBDIRS}; do \