xref: /illumos-gate/usr/src/cmd/tar/Makefile (revision 30f5cf21f0e4186919b67ac48223d09ca110f8fe)
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/tar/Makefile
29
30PROG= tar
31DEFAULTFILES= tar.dfl
32
33include ../Makefile.cmd
34
35CPPFLAGS += -D_FILE_OFFSET_BITS=64 -I../../lib/libcmd/inc
36DCFILE= $(PROG).dc
37
38LDLIBS += -lcmd -lsec
39
40CFLAGS += $(CCVERBOSE)
41
42# This flag is being added only for SCO (x86) compatibility
43CFLAGS += $(iBCS2FLAG)
44
45CPPFLAGS += -DEUC
46
47ROOTSYMLINK=	$(ROOTPROG)
48
49XGETFLAGS += -a -x tar.xcl
50
51.KEEP_STATE:
52
53all: $(PROG)
54
55install: all $(ROOTUSRSBINPROG) $(ROOTETCDEFAULTFILES) $(ROOTSYMLINK)
56	-$(RM) -r $(ROOTETCPROG)
57	-$(SYMLINK) ../usr/sbin/$(PROG) $(ROOTETCPROG)
58
59$(ROOTSYMLINK):
60	$(RM) $@; $(SYMLINK) ../sbin/$(PROG) $@
61
62clean:
63
64lint:	lint_PROG
65
66$(DCFILE):
67	$(RM) messages.po
68	$(XGETTEXT) -c TRANSLATION_NOTE -t $(PROG).c
69	$(SED) -e '/^domain/d' messages.po > $@
70	$(RM) messages.po
71
72include ../Makefile.targ
73