From 89e8dbabaffd5fa5cae535fd8e360bd8df78967a Mon Sep 17 00:00:00 2001 From: sebc Date: Wed, 7 Feb 2001 12:46:52 +0000 Subject: [PATCH] [project @ 2001-02-07 12:46:52 by sebc] Renamed ALL, BOOT and INSTALL (!) variables to ALL_TARGET, BOOT_TARGET, and INSTALL_TARGET to get rid of a conflict with autoconf's INSTALL variable. --- mk/target.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mk/target.mk b/mk/target.mk index 2aaf39a..8a552ce 100644 --- a/mk/target.mk +++ b/mk/target.mk @@ -81,12 +81,12 @@ ifneq "$(SUBDIRS)" "" # we override the boot & all targets in the top level Makefile ifneq "$(NO_ALL_TARGETS)" "YES" -ALL = all -BOOT = boot -INSTALL = install +ALL_TARGET = all +BOOT_TARGET = boot +INSTALL_TARGET = install endif -$(ALL) docs runtests $(BOOT) TAGS clean distclean mostlyclean maintainer-clean $(INSTALL) html ps dvi txt:: +$(ALL_TARGET) docs runtests $(BOOT_TARGET) TAGS clean distclean mostlyclean maintainer-clean $(INSTALL_TARGET) html ps dvi txt:: @echo "------------------------------------------------------------------------" @echo "===fptools== Recursively making \`$@' in $(SUBDIRS) ..." @echo "PWD = $(shell pwd)" -- 1.7.10.4