xref: /illumos-gate/usr/src/cmd/cfgadm/Makefile (revision 956e8222f10bf55e45b41d8b56084f72ebc113c9)
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, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26#ident	"%Z%%M%	%I%	%E% SMI"
27#
28# cmd/cfgadm/Makefile
29
30PROG= cfgadm
31
32include ../Makefile.cmd
33
34CFLAGS +=	-_gcc=-fwritable-strings
35CFLAGS64 +=	-_gcc=-fwritable-strings
36
37SED= sed
38DCFILE= $(PROG).dc
39
40XGETFLAGS += -a -x cfgadm.xcl
41
42LDLIBS += -lcfgadm
43LINTFLAGS += $(ENVLDFLAGS1) $(ENVLDFLAGS2) $(ENVLDFLAGS3) $(LDLIBS)
44
45.KEEP_STATE:
46
47all: $(PROG)
48
49install: all $(ROOTUSRSBINPROG)
50	-$(RM) $(ROOTETCPROG)
51	$(SYMLINK) ../usr/sbin/$(PROG) $(ROOTETCPROG)
52
53clean:
54
55lint:	lint_PROG
56
57$(DCFILE): $(PROG).c
58	$(RM) $(DCFILE)
59	$(COMPILE.cpp) $(PROG).c | \
60	$(XGETTEXT) -t -
61	$(SED) -e '/^domain/d' messages.po > $@
62	$(RM) messages.po
63
64include ../Makefile.targ
65