xref: /illumos-gate/usr/src/cmd/hal/hald/Makefile (revision 581cede61ac9c14d8d4ea452562a567189eead78)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21#
22# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25
26SUBDIRS =	solaris
27
28PROG =		hald
29OBJS =		hald_marshal.o device.o device_info.o device_store.o hald.o \
30		hald_dbus.o hald_runner.o ids.o logger.o property.o util.o \
31		util_helper.o util_pm.o
32OBJS_SOL =	devinfo.o devinfo_ieee1394.o devinfo_misc.o devinfo_pci.o devinfo_storage.o \
33		devinfo_usb.o hotplug.o osspec.o sysevent.o devinfo_acpi.o \
34		devinfo_cpu.o
35OBJS_ALL =	$(OBJS) $(OBJS_SOL:%=solaris/%)
36SRCS =		$(OBJS:%.o=%.c)
37
38include ../../Makefile.cmd
39include ../Makefile.hal
40
41ROOTCMDDIR =	$(ROOTLIB_HAL)
42
43LDLIBS +=	-lc -lm -ldbus-1 -ldbus-glib-1 -lglib-2.0 -lgobject-2.0 \
44		-ldevinfo -lsysevent -lnvpair -lkstat -lcfgadm
45
46all install $(PROG) :=	LDLIBS += -lexpat
47
48CPPFLAGS +=	$(HAL_DBUS_CPPFLAGS) $(HAL_GLIB_CPPFLAGS) $(HAL_CONFIG_CPPFLAGS)
49C99MODE =	$(C99_ENABLE)
50
51all :=		TARGET= all
52install :=	TARGET= install
53clean :=	TARGET= clean
54clobber :=	TARGET= clobber
55$(PROG) :=	TARGET= all
56
57.KEEP_STATE:
58
59all: $(SUBDIRS) .WAIT $(PROG)
60
61hald_marshal.o: hald_marshal.h hald_marshal.c
62
63hald_marshal.h: hald_marshal.list
64	glib-genmarshal --prefix=hald_marshal hald_marshal.list --header >> xgen-gmh \
65	&& (cmp -s xgen-gmh hald_marshal.h || cp xgen-gmh hald_marshal.h) \
66	&& rm -f xgen-gmh xgen-gmh~
67
68hald_marshal.c: hald_marshal.list
69	glib-genmarshal --prefix=hald_marshal hald_marshal.list --body >> xgen-gmc \
70	&& (cmp -s xgen-gmc hald_marshal.c || cp xgen-gmc hald_marshal.c) \
71	&& rm -f xgen-gmc xgen-gmc~
72
73$(PROG): $(SUBDIRS) .WAIT $(OBJS_ALL)
74	$(LINK.c) -o $@ $(OBJS_ALL) $(LDLIBS)
75	$(POST_PROCESS)
76
77install: all $(ROOTCMD) $(SUBDIRS)
78
79clean: $(SUBDIRS)
80	$(RM) $(OBJS) hald_marshal.c hald_marshal.h
81
82$(SUBDIRS): FRC
83	@cd $@; pwd; $(MAKE) $(TARGET)
84
85FRC:
86
87include ../../Makefile.targ
88