2012-03-22 22:22:59 +01:00
|
|
|
#################################################################################
|
2024-04-29 12:55:01 +02:00
|
|
|
# apps/graphics/nxwidgets/Makefile
|
2012-03-22 22:22:59 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# 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
|
2012-03-22 22:22:59 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2012-03-22 22:22:59 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# 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.
|
2012-03-22 22:22:59 +01:00
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
|
2020-05-20 06:35:03 +02:00
|
|
|
include $(APPDIR)/Make.defs
|
2018-09-16 14:52:25 +02:00
|
|
|
|
2012-03-22 22:22:59 +01:00
|
|
|
# Infrastructure
|
2018-09-16 14:52:25 +02:00
|
|
|
|
2012-03-22 22:22:59 +01:00
|
|
|
CXXSRCS = cbitmap.cxx cbgwindow.cxx ccallback.cxx cgraphicsport.cxx
|
|
|
|
CXXSRCS += clistdata.cxx clistdataitem.cxx cnxfont.cxx
|
|
|
|
CXXSRCS += cnxserver.cxx cnxstring.cxx cnxtimer.cxx cnxwidget.cxx cnxwindow.cxx
|
2012-05-08 00:49:27 +02:00
|
|
|
CXXSRCS += cnxtkwindow.cxx cnxtoolbar.cxx crect.cxx crlepalettebitmap.cxx
|
2018-09-16 14:52:25 +02:00
|
|
|
CXXSRCS += cscaledbitmap.cxx cstringiterator.cxx ctext.cxx cwidgetcontrol.cxx
|
|
|
|
CXXSRCS += cwidgeteventhandlerlist.cxx cwindoweventhandlerlist.cxx singletons.cxx
|
|
|
|
|
2012-03-22 22:22:59 +01:00
|
|
|
# Widget APIs
|
2018-09-16 14:52:25 +02:00
|
|
|
|
2012-03-22 22:22:59 +01:00
|
|
|
CXXSRCS += cbutton.cxx cbuttonarray.cxx ccheckbox.cxx ccyclebutton.cxx
|
2013-05-16 00:45:57 +02:00
|
|
|
CXXSRCS += cglyphbutton.cxx cglyphsliderhorizontal.cxx cglyphsliderhorizontalgrip.cxx
|
2018-11-09 17:00:50 +01:00
|
|
|
CXXSRCS += cimage.cxx ckeypad.cxx clabel.cxx clabelgrid.cxx clatchbutton.cxx
|
2012-03-22 22:22:59 +01:00
|
|
|
CXXSRCS += clatchbuttonarray.cxx clistbox.cxx clistboxdataitem.cxx cmultilinetextbox.cxx
|
2012-11-16 16:53:16 +01:00
|
|
|
CXXSRCS += cnumericedit.cxx
|
2012-03-22 22:22:59 +01:00
|
|
|
CXXSRCS += cprogressbar.cxx cradiobutton.cxx cradiobuttongroup.cxx cscrollbarhorizontal.cxx
|
|
|
|
CXXSRCS += cscrollbarpanel.cxx cscrollbarvertical.cxx cscrollinglistbox.cxx
|
|
|
|
CXXSRCS += cscrollingpanel.cxx cscrollingtextbox.cxx csliderhorizontal.cxx
|
|
|
|
CXXSRCS += csliderhorizontalgrip.cxx cslidervertical.cxx csliderverticalgrip.cxx
|
2014-07-15 17:29:28 +02:00
|
|
|
CXXSRCS += cstickybutton.cxx cstickybuttonarray.cxx cstickyimage.cxx ctabpanel.cxx
|
|
|
|
CXXSRCS += ctextbox.cxx
|
2018-09-16 14:52:25 +02:00
|
|
|
|
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
|