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 2004 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 31 32include ../Makefile.cmd 33 34CPPFLAGS += -D_FILE_OFFSET_BITS=64 -I../../lib/libcmd/inc 35SED= sed 36DCFILE= $(PROG).dc 37 38DFLTD= $(ROOTETC)/default 39DIRS= $(DFLTD) 40 41LDLIBS += -lcmd -lsec 42 43CFLAGS += $(CCVERBOSE) 44 45# This flag is being added only for SCO (x86) compatibility 46CFLAGS += $(iBCS2FLAG) 47 48CPPFLAGS += -DEUC 49 50ROOTSYMLINK= $(ROOTPROG) 51 52ETCDFLTPROG = $(PROG:%=$(DFLTD)/%) 53$(ETCDFLTPROG) := FILEMODE = $(LIBFILEMODE) 54$(ETCDFLTPROG) := OWNER = root 55$(ETCDFLTPROG) := GROUP = sys 56 57XGETFLAGS += -a -x tar.xcl 58 59.KEEP_STATE: 60 61all: $(PROG) $(PROG).dfl 62 63install: all $(DIRS) $(ROOTUSRSBINPROG) $(ETCDFLTPROG) $(ROOTSYMLINK) 64 -$(RM) -r $(ROOTETCPROG) 65 -$(SYMLINK) ../usr/sbin/$(PROG) $(ROOTETCPROG) 66 67$(ROOTSYMLINK): 68 $(RM) $@; $(SYMLINK) ../sbin/$(PROG) $@ 69 70$(DIRS): 71 $(INS.dir) 72 73$(DFLTD)/% : % 74 $(MV) $(PROG) $(PROG).save 75 $(LN) $(PROG).dfl $(PROG) 76 $(INS.file) 77 $(RM) $(PROG) 78 $(MV) $(PROG).save $(PROG) 79 80clean: 81 82lint: lint_PROG 83 84$(DCFILE): 85 $(RM) messages.po 86 $(XGETTEXT) -c TRANSLATION_NOTE -t $(PROG).c 87 $(SED) -e '/^domain/d' messages.po > $@ 88 $(RM) messages.po 89 90include ../Makefile.targ 91