|
From: <wsh...@us...> - 2003-08-08 15:08:53
|
Update of /cvsroot/emc/rcslib/src/print
In directory sc8-pr-cvs1:/tmp/cvs-serv8893/src/print
Modified Files:
Tag: wps_multiplat_dev_branch
Makefile
Log Message:
Make every possible build method use etc/multiplatbuild.sh unless the environment variable USE_OLD_RCSLIB_MAKEFILES is set
Index: Makefile
===================================================================
RCS file: /cvsroot/emc/rcslib/src/print/Makefile,v
retrieving revision 4.33.2.1
retrieving revision 4.33.2.2
diff -C2 -d -r4.33.2.1 -r4.33.2.2
*** Makefile 8 Aug 2003 14:21:14 -0000 4.33.2.1
--- Makefile 8 Aug 2003 15:08:50 -0000 4.33.2.2
***************
*** 1,2 ****
--- 1,18 ----
+ ifndef USE_OLD_RCSLIB_MAKEFILES
+
+ all:
+ ../../etc/multiplatbuild.sh
+
+ config:
+ ../../etc/multiplatbuild.sh config $(CONFIG_ARGS)
+
+ clean distclean check distcheck install:
+ ../../etc/multiplatbuild.sh config $@
+
+ .PHONY: all config clean distclean check distcheck install
+
+
+ else
+
#
# Makefile for the RCS C++ Storage Class Utilities
***************
*** 40,42 ****
.PHONY: printest printest.tc
! # DO NOT DELETE THIS LINE -- make depend depends on it.
--- 56,59 ----
.PHONY: printest printest.tc
! endif
! # ifndef USE_OLD_RCSLIB_MAKEFILES
|