54 lines
1.9 KiB
Plaintext
54 lines
1.9 KiB
Plaintext
############################################################################
|
|
# libs/libnx/nxglib/Make.defs
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# 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.
|
|
#
|
|
############################################################################
|
|
|
|
# Expose NXGL interfaces to applications
|
|
|
|
ifeq ($(CONFIG_NXGLIB),y)
|
|
|
|
# Files needed by both NX and NXFONTS
|
|
|
|
CSRCS += nxglib_rgbblend.c
|
|
|
|
# Files needed only by NX
|
|
|
|
ifeq ($(CONFIG_NX),y)
|
|
CSRCS += nxgl_area2rect.c nxglib_circlepts.c nxglib_circletraps.c
|
|
CSRCS += nxglib_intersecting.c nxglib_nonintersecting.c nxglib_nullrect.c
|
|
CSRCS += nxgl_rect2area.c nxglib_rectadd.c nxglib_rectcopy.c nxglib_rectinside.c
|
|
CSRCS += nxglib_rectintersect.c nxglib_rectoffset.c nxglib_rectoverlap.c
|
|
CSRCS += nxglib_rectsize.c nxglib_rectunion.c nxglib_rgb2yuv.c
|
|
CSRCS += nxglib_runcopy.c nxglib_runoffset.c nxglib_splitline.c
|
|
CSRCS += nxglib_trapcopy.c nxglib_trapoffset.c nxglib_vectoradd.c
|
|
CSRCS += nxglib_vectsubtract.c nxglib_yuv2rgb.c
|
|
|
|
ifneq ($(CONFIG_NX_NPLANES),1)
|
|
CSRCS += nxglib_colorcmp.c nxglib_colorcopy.c
|
|
endif
|
|
endif
|
|
|
|
# Add the nxglib/ directory to the build
|
|
|
|
DEPPATH += --dep-path nxglib
|
|
VPATH += :nxglib
|
|
|
|
endif
|