messages/install/makefiles/usr/share/text-install/help/zh_CN/Makefile
changeset 190 b7490c9d32b5
equal deleted inserted replaced
189:906b1791d0c4 190:b7490c9d32b5
       
     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 $(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 $(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 # Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
       
    23 #
       
    24 
       
    25 # include global definitions
       
    26 SRC_LOCALE:sh = basename `pwd`
       
    27 include ../Makefile.help
       
    28 
       
    29 COMMON_SUBDIRS=
       
    30 sparc_SUBDIRS=
       
    31 i386_SUBDIRS=
       
    32 SUBDIRS=	$(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
       
    33 
       
    34 all:=		TARGET= all
       
    35 install:=	TARGET= install
       
    36 clean:=		TARGET= clean
       
    37 clobber:=	TARGET= clobber
       
    38 lint:=		TARGET= lint
       
    39 
       
    40 CLEAN_FILES += $(SRC_FILES)
       
    41 
       
    42 .KEEP_STATE:
       
    43 
       
    44 all: $(FILES) $(SUBDIRS)
       
    45 
       
    46 install: all $(ROOT_FILES) $(SUBDIRS)
       
    47 
       
    48 clean: $(SUBDIRS)
       
    49 	$(RM) $(CLEAN_FILES)
       
    50 
       
    51 clobber lint:
       
    52 
       
    53 $(SRC_FILES): $(BASEFILEDIR)/$$@
       
    54 	$(ICONV) $? > $@
       
    55 
       
    56 $(SUBDIRS): FRC
       
    57 	-@cd $@; pwd; $(MAKE) $(TARGET)
       
    58 
       
    59 FRC:
       
    60 
       
    61 include $(TRANS)/Makefile.trans.targ