Makefile revision 410cfc1c29e3c504b79366ddfd3584e9e69a33d5
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# This file and its contents are supplied under the terms of the
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# Common Development and Distribution License ("CDDL"), version 1.0.
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# You may only use this file in accordance with the terms version
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# 1.0 of the CDDL.
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# A full copy of the text of the CDDL should have accompanied this
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# source. A copy is of the CDDL is also available via the Internet
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# at http://www.illumos.org/license/CDDL.
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# Copyright 2010 Nexenta Systems, Inc. All rights reserved.
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'AmoreCATEGORY=LC_MESSAGES
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amoreinclude ../Makefile.common
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amoreen_COMMON = en_AU en_CA en_GB en_NZ en_US
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
fc2512cfb727d49529d8ed99164db871f4829b73Robert Mustacchien_ASCII = $(en_COMMON:%=%.US-ASCII)
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amoreen_LATIN1 = $(en_COMMON:%=%.ISO8859-1)
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amoreen_LATIN15 = $(en_COMMON:%=%.ISO8859-15)
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amoreen_UTF8 = $(en_COMMON:%=%.UTF-8) en_IE.UTF-8
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amoreen_LOCALES = $(en_ASCII) $(en_LATIN1) $(en_LATIN15) $(en_UTF8)
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore.KEEP_STATE:
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
fc2512cfb727d49529d8ed99164db871f4829b73Robert Mustacchiall: $(MACH) .WAIT $(MACHLOCALES)
fc2512cfb727d49529d8ed99164db871f4829b73Robert Mustacchi
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore$(ASCII:%=$(MACH)/%): $(MACH)/US-ASCII
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore $(RM) $@
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore $(LN) $(MACH)/US-ASCII $@
fc2512cfb727d49529d8ed99164db871f4829b73Robert Mustacchi
b599bd937c305a895426e8c412ca920ce7824850Robert Mustacchi$(en_LOCALES:%=$(MACH)/%): $(MACH)/en
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore $(RM) $@
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore $(LN) $(MACH)/en $@
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amoreclean:
fc2512cfb727d49529d8ed99164db871f4829b73Robert Mustacchi $(RM) $(OBJS) $(CLEANFILES)
fc2512cfb727d49529d8ed99164db871f4829b73Robert Mustacchi $(RM) -r $(MACH)
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorelint:
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorecheck:
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# Rules for building encoding data files.
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore$(MACH)/%: data/%.src $(MACH)
fc2512cfb727d49529d8ed99164db871f4829b73Robert Mustacchi $(INS.nohash)
fc2512cfb727d49529d8ed99164db871f4829b73Robert Mustacchi
fc2512cfb727d49529d8ed99164db871f4829b73Robert Mustacchiinclude ../Makefile.targ
fc2512cfb727d49529d8ed99164db871f4829b73Robert Mustacchi