src/Makefile
author Andrzej Szeszo <aszeszo@gmail.com>
Sun, 17 Apr 2011 01:37:32 +0100
changeset 565 459f0c0bc498
parent 521 cdc9f7acaa9b
permissions -rw-r--r--
Removed tag oi148b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
     1
#
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
     2
# CDDL HEADER START
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
     3
#
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
349
2b1c04c17dab 6800051 Repackage Arabeyes fonts for OpenSolaris
hnhn
parents: 164
diff changeset
     5
# Common Development and Distribution License (the "License").
0
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
     7
#
349
2b1c04c17dab 6800051 Repackage Arabeyes fonts for OpenSolaris
hnhn
parents: 164
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
0
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    10
# See the License for the specific language governing permissions
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    11
# and limitations under the License.
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    12
#
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
349
2b1c04c17dab 6800051 Repackage Arabeyes fonts for OpenSolaris
hnhn
parents: 164
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
0
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    18
#
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    19
# CDDL HEADER END
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    20
#
349
2b1c04c17dab 6800051 Repackage Arabeyes fonts for OpenSolaris
hnhn
parents: 164
diff changeset
    21
2b1c04c17dab 6800051 Repackage Arabeyes fonts for OpenSolaris
hnhn
parents: 164
diff changeset
    22
#
2b1c04c17dab 6800051 Repackage Arabeyes fonts for OpenSolaris
hnhn
parents: 164
diff changeset
    23
# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
0
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    24
# Use is subject to license terms.
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    25
#
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    26
#ident	"@(#)Makefile	1.0	06/03/07	SMI"
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    27
#
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    28
68
891e416c1e97 removed openwin/lib/locale from the build targets, since we're using Xorg's Xi18n locale database files.
yongsun
parents: 20
diff changeset
    29
#FIXME: removed openwin/lib/locale from the build targets, since we're using Xorg's Xi18n locale database files.
891e416c1e97 removed openwin/lib/locale from the build targets, since we're using Xorg's Xi18n locale database files.
yongsun
parents: 20
diff changeset
    30
#SUBDIRS = lib locale_src/base openwin/lib/locale openwin/lib/X11/fonts/ share/lib/ openwin/keytables xorg/keytables uts cmd
521
cdc9f7acaa9b Locale definitions not relevant anymore as illumos is providing its own now.
Andrzej Szeszo <aszeszo@gmail.com>
parents: 501
diff changeset
    31
SUBDIRS = lib kernel share/lib/ xorg/keytables xorg/fonts uts cmd
0
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    32
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    33
all:=		TARGET= all
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    34
install :=	TARGET= install
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    35
clean :=	TARGET= clean
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    36
clobber :=	TARGET= clobber
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    37
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    38
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    39
all install clean: $(SUBDIRS)
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    40
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    41
$(SUBDIRS): FRC
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    42
	@cd $@; pwd; $(MAKE) $(MFLAGS) $(TARGET)
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    43
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    44
FRC:
542988ea726d initial version of Nevada G11N repository
simford
parents:
diff changeset
    45