blob: a2974b25bd608ab9c7e07b82b4c272ffdcd34747 [file] [log] [blame]
# *************************************************************
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# *************************************************************
PRJ=.
PRJNAME=readlicense_oo
TARGET=source
# ------------------------------------------------------------------
.INCLUDE: settings.mk
# ------------------------------------------------------------------
ALL_LICENSE=..$/LICENSE
ALL_NOTICE=..$/NOTICE
.IF "${ENABLE_CATEGORY_B}"=="YES"
# extend the install set's LICENSE and NOTICE files
# for content distributed under category-B licenses
ALL_LICENSE+=..$/LICENSE_category_b
ALL_NOTICE+=..$/NOTICE_category_b
.ENDIF
.IF "${BUNDLED_EXTENSION_BLOBS}"!=""
# extend the install set's LICENSE and NOTICE files
# for content distributed as mere aggregations
ALL_LICENSE+=..$/LICENSE_aggregated
ALL_NOTICE+=..$/NOTICE_aggregated
.ENDIF
SUM_LICENSE=$(MISC)$/SUM_LICENSE
SUM_NOTICE=$(MISC)$/SUM_NOTICE
.IF "$(GUI)"=="WNT" || "$(GUI)"=="OS2"
LINEEND_CAT=$(PERL) -p -e 's/\r?\n$$/\r\n/'
.ELSE
LINEEND_CAT=cat
.ENDIF
# ------------------------------------------------------------------
.INCLUDE: target.mk
# ------------------------------------------------------------------
ALLTAR: ${SUM_LICENSE} ${SUM_NOTICE}
${SUM_LICENSE} : ${ALL_LICENSE}
${LINEEND_CAT} > $@ $<
${SUM_NOTICE} : ${ALL_NOTICE}
${LINEEND_CAT} > $@ $<