xref: /titanic_41/usr/src/cmd/hal/Makefile.hal (revision 18c2aff776a775d34a4c9893a4c72e0434d68e36)
1*18c2aff7Sartem#
2*18c2aff7Sartem# CDDL HEADER START
3*18c2aff7Sartem#
4*18c2aff7Sartem# The contents of this file are subject to the terms of the
5*18c2aff7Sartem# Common Development and Distribution License (the "License").
6*18c2aff7Sartem# You may not use this file except in compliance with the License.
7*18c2aff7Sartem#
8*18c2aff7Sartem# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*18c2aff7Sartem# or http://www.opensolaris.org/os/licensing.
10*18c2aff7Sartem# See the License for the specific language governing permissions
11*18c2aff7Sartem# and limitations under the License.
12*18c2aff7Sartem#
13*18c2aff7Sartem# When distributing Covered Code, include this CDDL HEADER in each
14*18c2aff7Sartem# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*18c2aff7Sartem# If applicable, add the following below this CDDL HEADER, with the
16*18c2aff7Sartem# fields enclosed by brackets "[]" replaced with your own identifying
17*18c2aff7Sartem# information: Portions Copyright [yyyy] [name of copyright owner]
18*18c2aff7Sartem#
19*18c2aff7Sartem# CDDL HEADER END
20*18c2aff7Sartem#
21*18c2aff7Sartem#
22*18c2aff7Sartem# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23*18c2aff7Sartem# Use is subject to license terms.
24*18c2aff7Sartem#
25*18c2aff7Sartem# ident	"%Z%%M%	%I%	%E% SMI"
26*18c2aff7Sartem#
27*18c2aff7Sartem# Definitions common for HAL code and consumers
28*18c2aff7Sartem#
29*18c2aff7Sartem
30*18c2aff7SartemHAL_VERSION =		0.5.8
31*18c2aff7Sartem
32*18c2aff7SartemROOTLIB_HAL =		$(ROOTLIB)/hal
33*18c2aff7SartemROOTLIB_HAL_SCRIPTS =	$(ROOTLIB)/hal
34*18c2aff7Sartem
35*18c2aff7SartemROOT_HAL_FDI =		$(ROOT)/etc/hal/fdi
36*18c2aff7Sartem
37*18c2aff7SartemHAL_USER =		daemon
38*18c2aff7SartemHAL_GROUP =		daemon
39*18c2aff7Sartem
40*18c2aff7Sartem# derived from the generated config.h
41*18c2aff7SartemHAL_CONFIG_CPPFLAGS =	-DPACKAGE_DATA_DIR=\"/usr/lib\" \
42*18c2aff7Sartem			-DPACKAGE_BIN_DIR=\"/usr/bin\" \
43*18c2aff7Sartem			-DPACKAGE_LIBEXEC_DIR=\"/usr/lib/hal\" \
44*18c2aff7Sartem			-DPACKAGE_SCRIPT_DIR=\"/usr/lib/hal\" \
45*18c2aff7Sartem			-DPACKAGE_LOCALSTATEDIR=\"/var\" \
46*18c2aff7Sartem			-DPACKAGE_SYSCONF_DIR=\"/etc\" \
47*18c2aff7Sartem			-DPACKAGE_LOCALE_DIR=\"/usr/lib/locale\" \
48*18c2aff7Sartem			-DPACKAGE_VERSION=\"$(HAL_VERSION)\" \
49*18c2aff7Sartem			-DPACKAGE_STRING=\""hal $(HAL_VERSION)"\" \
50*18c2aff7Sartem			-DHALD_PID_FILE=\"/var/run/hald/pid\" \
51*18c2aff7Sartem			-DHALD_SOCKET_DIR=\"/var/run/hald\" \
52*18c2aff7Sartem			-DHAVE_POLKIT \
53*18c2aff7Sartem			-DHWDATA_DIR=\"/usr/share/hwdata\" \
54*18c2aff7Sartem			-DHAL_USER=\"$(HAL_USER)\" \
55*18c2aff7Sartem			-DHAL_GROUP=\"$(HAL_GROUP)\"
56*18c2aff7Sartem
57*18c2aff7SartemHAL_DBUS_CPPFLAGS =	-DDBUS_API_SUBJECT_TO_CHANGE -DDBUS_SYSTEMD_DIR=\"/etc/dbus-1/system.d\" \
58*18c2aff7Sartem			 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include
59*18c2aff7Sartem
60*18c2aff7SartemHAL_GLIB_CPPFLAGS = 	-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
61*18c2aff7Sartem
62*18c2aff7SartemHAL_GETTEXT_PACKAGE =	$(TEXT_DOMAIN)
63*18c2aff7Sartem
64