Modified syntax of makefile usage

This commit is contained in:
Janet B. Anderson
1994-10-05 18:45:57 +00:00
parent 5b94f9dd1f
commit 2dd007c5e5

View File

@@ -13,6 +13,9 @@
# install because the release.% syntax is illegal.
#
# $Log$
# Revision 1.16 1994/09/09 17:32:27 jba
# Cleanup of files
#
# Revision 1.15 1994/09/08 17:25:39 mcn
# Changed clean to tools/Clean. Added "uninstall" dependency.
#
@@ -96,19 +99,19 @@ dirs.%:
build.%: dirs.%
@echo $*: Building
@${MAKE} ${MFLAGS} ARCH=$* -f Makefile.subdirs build
@${MAKE} ${MFLAGS} T_A=$* -f Makefile.subdirs build
install.%: dirs.%
@echo $*: Installing
@${MAKE} ${MFLAGS} ARCH=$* -f Makefile.subdirs install
@${MAKE} ${MFLAGS} T_A=$* -f Makefile.subdirs install
depends.%: dirs.%
@echo $*: Performing Make Depends
@${MAKE} ${MFLAGS} ARCH=$* -f Makefile.subdirs depends
@${MAKE} ${MFLAGS} T_A=$* -f Makefile.subdirs depends
clean.%: dirs.%
@echo $*: Cleaning
@${MAKE} ${MFLAGS} ARCH=$* -f Makefile.subdirs clean
@${MAKE} ${MFLAGS} T_A=$* -f Makefile.subdirs clean
# Illegal Syntax