66 lines
2.7 KiB
Plaintext
66 lines
2.7 KiB
Plaintext
############################################################################
|
|
# libs/libnx/nxmu/Make.defs
|
|
#
|
|
# Copyright (C) 2013, 2017, 2019 Gregory Nutt. All rights reserved.
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in
|
|
# the documentation and/or other materials provided with the
|
|
# distribution.
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
# used to endorse or promote products derived from this software
|
|
# without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
############################################################################
|
|
|
|
# All of user-space hooks must be built in for the multi-user NX
|
|
# implementation so that they are available to the application in the kernel
|
|
# build (single use mode cannot be used with the kernel build)
|
|
|
|
ifeq ($(CONFIG_NX),y)
|
|
|
|
CSRCS += nxmu_sendserver.c nx_connect.c nx_disconnect.c
|
|
CSRCS += nx_eventhandler.c nx_eventnotify.c nxmu_semtake.c
|
|
CSRCS += nx_block.c nx_synch.c
|
|
CSRCS += nx_kbdchin.c nx_kbdin.c nx_mousein.c
|
|
CSRCS += nx_releasebkgd.c nx_requestbkgd.c nx_setbgcolor.c
|
|
|
|
CSRCS += nxmu_sendwindow.c nx_closewindow.c nx_constructwindow.c
|
|
CSRCS += nx_bitmap.c nx_fill.c nx_filltrapezoid.c nx_getposition.c
|
|
CSRCS += nx_getrectangle.c nx_lower.c nx_modal.c nx_move.c nx_openwindow.c
|
|
CSRCS += nx_raise.c nx_redrawreq.c nx_setpixel.c nx_setposition.c
|
|
CSRCS += nx_setsize.c nx_setvisibility.c
|
|
|
|
ifeq ($(CONFIG_NX_HWCURSOR),y)
|
|
CSRCS += nx_cursor.c
|
|
else ifeq ($(CONFIG_NX_SWCURSOR),y)
|
|
CSRCS += nx_cursor.c
|
|
endif
|
|
|
|
# Add the nxmu/ directory to the build
|
|
|
|
DEPPATH += --dep-path nxmu
|
|
VPATH += :nxmu
|
|
|
|
endif
|