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 (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
23# Copyright 2020 Joyent, Inc.
24#
25
26LIBRARY = libtopo.a
27VERS = .1
28
29BUILTINSRCS = \
30	cpu.c \
31	dev.c \
32	fmd.c \
33	hc.c \
34	legacy_hc.c \
35	mem.c \
36	mod.c \
37	pkg.c \
38	svc.c \
39	sw.c \
40	zfs.c
41
42LIBSRCS = \
43	topo_2xml.c \
44	topo_alloc.c \
45	topo_builtin.c \
46	topo_digraph.c \
47	topo_digraph_xml.c \
48	topo_error.c \
49	topo_file.c \
50	topo_fmri.c \
51	topo_list.c \
52	topo_method.c \
53	topo_mod.c \
54	topo_module.c \
55	topo_node.c \
56	topo_nvl.c \
57	topo_parse.c \
58	topo_prop.c \
59	topo_protocol.c \
60	topo_rtld.c \
61	topo_snap.c \
62	topo_string.c \
63	topo_subr.c \
64	topo_tables.c \
65	topo_tree.c \
66	topo_xml.c
67
68OBJECTS = $(BUILTINSRCS:%.c=%.o) $(LIBSRCS:%.c=%.o)
69
70include ../../../../Makefile.lib
71include ../../../Makefile.lib
72
73SRCS = $(BUILTINSRCS:%.c=../common/%.c) $(LIBSRCS:%.c=../common/%.c)
74LIBS = $(DYNLIB)
75
76SRCDIR =	../common
77
78CLEANFILES += $(SRCDIR)/topo_error.c $(SRCDIR)/topo_tables.c
79
80CPPFLAGS += -I../common -I$(ADJUNCT_PROTO)/usr/include/libxml2 -I.
81CSTD = $(CSTD_GNU99)
82CFLAGS += $(CCVERBOSE) $(C_BIGPICFLAGS)
83CFLAGS += -D_POSIX_PTHREAD_SEMANTICS
84CFLAGS64 += $(CCVERBOSE) $(C_BIGPICFLAGS)
85
86$(DYNLIB)  := LDLIBS += \
87	-lnvpair -lelf -lumem -lxml2 -lkstat -luuid -ldevinfo \
88	-lsmbios -lc -ldevid -lipmi -lscf -lpcidb
89NATIVE_LIBS +=	libxml2.so
90
91.KEEP_STATE:
92
93all: $(LIBS)
94
95pics/%.o: ../$(MACH)/%.c
96	$(COMPILE.c) -o $@ $<
97	$(POST_PROCESS_O)
98
99%.o: ../common/%.c
100	$(COMPILE.c) -o $@ $<
101	$(POST_PROCESS_O)
102
103../common/topo_error.c: ../common/mkerror.sh ../common/topo_error.h
104	sh ../common/mkerror.sh liberrors < ../common/topo_error.h > $@
105	sh ../common/mkerror.sh properrors < ../common/libtopo.h >> $@
106	sh ../common/mkerror.sh methoderrors < ../common/libtopo.h >> $@
107	sh ../common/mkerror.sh fmrierrors < ../common/libtopo.h >> $@
108	sh ../common/mkerror.sh hdlerrors < ../common/libtopo.h >> $@
109	sh ../common/mkerror.sh moderrors < ../common/topo_mod.h >> $@
110
111$(SRCDIR)/topo_tables.c: $(SRCDIR)/mktables.sh $(SRCDIR)/libtopo.h
112	sh $(SRCDIR)/mktables.sh $(SRCDIR)/libtopo.h > $@
113
114include ../../../../Makefile.targ
115include ../../../Makefile.targ
116