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 1998-2002 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# ident "%Z%%M% %I% %E% SMI" 27# 28# cmd/sort/Makefile 29# 30 31PROG = sort 32XPG4PROG = sort 33 34include ../Makefile.cmd 35 36SRCS = common/check.c common/fields.c common/initialize.c common/internal.c \ 37 common/main.c common/merge.c common/options.c common/streams.c \ 38 common/streams_array.c common/streams_mmap.c common/streams_stdio.c \ 39 common/streams_wide.c common/utility.c 40POFILES = $(SRCS:common/%.c=./%.po) 41CLOBBERFILES = $(DCFILE) $(POFILE) $(POFILES) 42 43.KEEP_STATE: 44 45$(XPG4) := CPPFLAGS += -DXPG4 46XGETFLAGS += -a -x sort.xcl 47 48SUBDIRS = $(MACH) 49$(BUILD64)SUBDIRS += $(MACH64) 50 51all := TARGET = all 52install := TARGET = install 53clean := TARGET = clean 54clobber := TARGET = clobber 55lint := TARGET = lint 56debug := TARGET = debug 57convert := TARGET = convert 58invoke := TARGET = invoke 59stats := TARGET = stats 60 61all : $(SUBDIRS) 62 63clean clobber lint : $(SUBDIRS) 64 65debug convert invoke stats : $(SUBDIRS) 66 67install : $(SUBDIRS) 68 -$(RM) $(ROOTPROG) 69 -$(LN) $(ISAEXEC) $(ROOTPROG) 70 71$(POFILE) : $(POFILES) 72 echo $(SRCS) 73 echo $(POFILES) 74 -$(RM) $@ 75 $(CAT) $(POFILES) > $@ 76 77%.po : common/%.c 78 $(RM) messages.po 79 $(XGETTEXT) -c TRANSLATION_NOTE $< 80 $(SED) -e '/^domain/d' messages.po > $@ 81 $(RM) messages.po 82 83$(SUBDIRS) : FRC 84 @cd $@; pwd; $(MAKE) $(TARGET) 85 86FRC : 87 88include ../Makefile.targ 89