usr/src/lib/install_configuration/Makefile
author Ethan Quach <Ethan.Quach@sun.com>
Tue, 31 May 2011 14:21:09 -0700
changeset 1160 6f7e708c38ec
permissions -rw-r--r--
16257 Support for zones configuration and installation should be included in AI 7041915 TransferFiles ICT should support transferring a directory that is more than one level deep. 7049824 System installed via AI ends up with incorrect mountpoints for shared ZFS datasets

#
# 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) 2011, Oracle and/or its affiliates. All rights reserved.
#

PYMODS		= __init__.py \
		configuration.py

PYCMODS		= $(PYMODS:%.py=%.pyc)

ROOTPYMODS	= $(PYMODS:%=$(ROOTPYTHONVENDORSOLINSTALLCONFIGURATION)/%)

ROOTPYCMODS	= $(PYCMODS:%=$(ROOTPYTHONVENDORSOLINSTALLCONFIGURATION)/%)


CLOBBERFILES	= $(PYCMODS) 
CLEANFILES	= $(CLOBBERFILES)

include ../Makefile.lib

HDRS		= $(EXPHDRS) $(PRIVHDRS)

python:
	$(PYTHON) -m compileall -l $(@D)

all:		$(HDRS) python

install_h:

install:	all .WAIT \
		$(ROOTPYTHONVENDOR) \
		$(ROOTPYTHONVENDORSOLINSTALL) \
		$(ROOTPYTHONVENDORSOLINSTALLCONFIGURATION) \
		$(ROOTPYMODS) $(ROOTPYCMODS)

lint:		lint_SRCS

FRC:

include ../Makefile.targ