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.
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.
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]
22 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
25 # Copyright 2015 RackTop Systems.
42 SRCS
= $(MYOBJS
:%.o
=%.c
)
44 include ..
/..
/Makefile.cmd
45 include ..
/..
/Makefile.ctf
47 NATIVE_BUILD
=$(POUND_SIGN
)
48 $(NATIVE_BUILD
)PROG
= $(MYPROG
:%=%-native
)
49 $(NATIVE_BUILD
)OBJS
= $(MYOBJS
:%.o
=%-native.o
)
51 ROOTCMDDIR
= $(ROOT
)/lib
/svc
/bin
53 MYCPPFLAGS
= -I.
-I..
/common
-I..
/..
/..
/common
/svc \
54 -I
$(ROOT
)/usr
/include/sqlite-sys
-D_REENTRANT
55 CPPFLAGS
+= $(MYCPPFLAGS
)
56 CFLAGS
+= $(CCVERBOSE
)
57 CERRWARN
+= -_gcc
=-Wno-parentheses
58 CERRWARN
+= -_gcc
=-Wno-type-limits
59 CERRWARN
+= -_gcc
=-Wno-unused-label
60 CERRWARN
+= -_gcc
=-Wno-unused-variable
61 CERRWARN
+= -_gcc
=-Wno-unused-function
62 CERRWARN
+= -_gcc
=-Wno-uninitialized
63 MYLDLIBS
= -lumem
-luutil
64 LDLIBS
+= -lsecdb
-lbsm
$(MYLDLIBS
)
65 LINTFLAGS
+= -errtags
-erroff
=E_BAD_FORMAT_ARG_TYPE2
-erroff
=E_NAME_DEF_NOT_USED2
67 CLOBBERFILES
+= $(MYPROG
:%=%-native
)
69 LIBUUTIL
= $(SRC
)/lib
/libuutil
70 LIBSCF
= $(SRC
)/lib
/libscf
72 SCRIPTFILE
= restore_repository
73 ROOTSCRIPTFILE
= $(ROOTCMDDIR
)/$(SCRIPTFILE
)
76 # Native variant (used in ../seed)
78 $(NATIVE_BUILD
)CC
= $(NATIVECC
)
79 $(NATIVE_BUILD
)LD
= $(NATIVELD
)
80 $(NATIVE_BUILD
)CFLAGS
= $(NATIVE_CFLAGS
)
81 $(NATIVE_BUILD
)CPPFLAGS
= $(MYCPPFLAGS
) -I
$(LIBUUTIL
)/common
-I
$(LIBSCF
)/inc
82 $(NATIVE_BUILD
)CPPFLAGS
+= -DNATIVE_BUILD
83 $(NATIVE_BUILD
)LDFLAGS
=
84 $(NATIVE_BUILD
)LDLIBS
= -L
$(ADJUNCT_PROTO
)/usr
/lib
-R
$(ADJUNCT_PROTO
)/usr
/lib \
85 -L
$(LIBUUTIL
)/native
-R
$(LIBUUTIL
)/native
$(MYLDLIBS
)
91 LIBSQLITE
= -lsqlite-sys
92 $(NATIVE_BUILD
)OBJSQLITE
= $(ROOT
)/lib
/libsqlite-native.o
93 $(NATIVE_BUILD
)LIBSQLITE
=
96 LDLIBS
+= $(LIBSQLITE
)
98 install := TARGET
= install
99 clobber := TARGET
= clobber
102 .PARALLEL
: $(MYOBJS
) $(MYOBJS
:%.o
=%-native.o
)
107 @cd
$(LIBUUTIL
)/native
; pwd
; $(MAKE
) $(MFLAGS
) install
108 @NATIVE_BUILD
= $(MAKE
) $(MFLAGS
) all
111 $(LINK.c
) -o
$@
$(OBJS
) $(LDLIBS
)
115 $(COMPILE.c
) -o
$@
$<
118 $(ROOTCMDDIR
)/%: %.sh
121 install: all $(ROOTCMD
) $(ROOTVARSADMFILE
) $(ROOTSCRIPTFILE
)
124 $(RM
) $(MYOBJS
) $(MYOBJS
:%.o
=%-native.o
)
132 include ..
/..
/Makefile.targ