2012-04-30 00:10:52 +02:00
|
|
|
#################################################################################
|
2019-04-05 02:53:29 +02:00
|
|
|
# apps/graphics/nxwm/Makefile
|
2012-04-30 00:10:52 +02:00
|
|
|
#
|
2018-09-16 00:38:39 +02:00
|
|
|
# Copyright (C) 2012, 2014, 2016, 2018 Gregory Nutt. All rights reserved.
|
2012-04-30 00:10:52 +02:00
|
|
|
# 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, NxWidgets, nor the names of its contributors
|
|
|
|
# me 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.
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
|
2019-10-15 03:25:48 +02:00
|
|
|
-include $(TOPDIR)/Make.defs
|
2012-05-19 01:08:34 +02:00
|
|
|
|
2019-10-06 14:14:39 +02:00
|
|
|
PROGNAME = nxwm
|
|
|
|
PRIORITY = SCHED_PRIORITY_DEFAULT
|
|
|
|
STACKSIZE = 2048
|
|
|
|
MODULE = $(CONFIG_NXWM)
|
|
|
|
|
2012-04-30 00:10:52 +02:00
|
|
|
# Window Manager
|
2016-07-22 19:10:07 +02:00
|
|
|
|
2019-04-05 02:53:29 +02:00
|
|
|
MAINSRC = nxwm_main.cxx
|
2012-05-22 21:29:22 +02:00
|
|
|
CXXSRCS = capplicationwindow.cxx cfullscreenwindow.cxx ctaskbar.cxx cwindowmessenger.cxx
|
|
|
|
|
|
|
|
# Device support
|
2012-05-19 01:08:34 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_NXWM_TOUCHSCREEN),y)
|
2012-05-22 21:29:22 +02:00
|
|
|
CXXSRCS += ctouchscreen.cxx
|
2012-05-19 01:08:34 +02:00
|
|
|
endif
|
|
|
|
|
2012-05-21 00:10:34 +02:00
|
|
|
ifeq ($(CONFIG_NXWM_KEYBOARD),y)
|
|
|
|
CXXSRCS += ckeyboard.cxx
|
|
|
|
endif
|
|
|
|
|
2012-05-22 21:29:22 +02:00
|
|
|
# Applications
|
|
|
|
|
2013-12-30 17:04:34 +01:00
|
|
|
CXXSRCS += cstartwindow.cxx chexcalculator.cxx
|
2012-05-22 21:29:22 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_NXWM_TOUCHSCREEN),y)
|
|
|
|
CXXSRCS += ccalibration.cxx
|
|
|
|
endif
|
|
|
|
|
2014-09-20 22:25:51 +02:00
|
|
|
ifeq ($(CONFIG_NXWM_NXTERM),y)
|
2014-09-20 22:41:45 +02:00
|
|
|
CXXSRCS += cnxterm.cxx
|
2013-12-30 17:04:34 +01:00
|
|
|
endif
|
|
|
|
|
2013-05-12 00:15:51 +02:00
|
|
|
ifeq ($(CONFIG_NXWM_MEDIAPLAYER),y)
|
2014-07-14 17:20:13 +02:00
|
|
|
CXXSRCS += cmediaplayer.cxx
|
2013-05-12 00:15:51 +02:00
|
|
|
endif
|
|
|
|
|
2018-09-16 17:25:32 +02:00
|
|
|
VPATH = src
|
2018-09-16 14:52:25 +02:00
|
|
|
|
2018-09-16 00:38:39 +02:00
|
|
|
include $(APPDIR)/Application.mk
|