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#
23# Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
24#
25
26ARCH =		$(TARGET_ARCH:-%=%)
27
28PROG =		tbeadm
29
30
31OBJS =		tbeadm.o
32SRCS =		$(OBJS:%.o=../%.c)
33
34include ../../Makefile.lib
35
36#LIBS= 		$(DYNLIB)
37
38INCLUDE =	-I../common
39
40STATICDEPLIBS	= ../$(ARCH)/libbe.a
41STATICLDLIBS	+= -linstzones -L/lib -L../$(ARCH) -lzfs -lnvpair \
42		-luuid -lgen -Bstatic -lbe -Bdynamic
43
44DEPLIBS		= ../$(ARCH)/libbe.so.1
45LDLIBS +=	-L/lib -L../pics/$(ARCH) -lzfs -lnvpair -lbe
46
47CPPFLAGS +=	-D_LARGEFILE64_SOURCE=1 -D_REENTRANT ${INCLUDE}
48CFLAGS +=	-g -DDEBUG
49
50
51$(PROG):	$(OBJS) $(STATICDEPLIBS)
52		$(LINK.c) -o $@ $@.c $(OBJS) $(STATICLDLIBS)
53		$(POST_PROCESS)
54
55all:		$(PROG)
56
57install_h:
58
59install:	all
60
61lint:
62	$(LINT.c) $(SRCS) $(LDLIBS)
63
64clobber: clean
65	$(RM) tbeadm.o
66
67clean:
68	$(RM) tbeadm 
69
70