components/Makefile
changeset 2 125cd5d2cd9e
child 6 20f80c019d73
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/Makefile	Fri May 07 13:13:04 2010 -0500
@@ -0,0 +1,63 @@
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+# or http://www.opensolaris.org/os/licensing.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# Copyright (c) 2010, Oracle and/or it's affiliates.  All rights reserved.
+#
+
+include ../make-rules/shared-macros.mk
+
+COMPONENT_DIRS +=	lcms
+COMPONENT_DIRS +=	file
+COMPONENT_DIRS +=	pycups
+
+download:	TARGET = download
+prep:		TARGET = prep
+build:		TARGET = build
+install:	TARGET = install
+publish:	TARGET = publish
+validate:	TARGET = validate
+clean:		TARGET = clean
+clobber:	TARGET = clobber
+
+.DEFAULT:	publish
+
+.PARALLEL:	$(COMPONENT_DIRS)
+
+download prep build install publish validate: setup $(COMPONENT_DIRS)
+
+clean clobber:	$(COMPONENT_DIRS)
+ifeq ($(findstring file://, $(PKG_REPO)),file://)
+	$(RM) -r $(PKG_REPO:file://%=%) $(WS_LOGS)
+endif
+
+setup:	$(WS_LOGS) repo
+
+$(WS_LOGS):
+	$(MKDIR) $@
+
+repo:
+	$(PKGSEND) -s $(PKG_REPO) create-repository \
+		--set-property publisher.prefix=$(PUBLISHER)
+
+$(COMPONENT_DIRS):	FORCE
+	@cd $@ ; echo "$(TARGET) \c" ; pwd ; \
+	 $(GMAKE) $(TARGET) >$(WS_LOGS)/$(TARGET):[email protected] 2>&1
+
+FORCE: