2016-04-14 05:42:56 +08:00
|
|
|
############################################################################
|
2021-12-31 16:22:11 +08:00
|
|
|
# drivers/video/vnc/Make.defs
|
2016-04-14 05:42:56 +08:00
|
|
|
#
|
2021-02-05 18:12:53 +08: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
|
2016-04-14 05:42:56 +08:00
|
|
|
#
|
2021-02-05 18:12:53 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2016-04-14 05:42:56 +08:00
|
|
|
#
|
2021-02-05 18:12:53 +08: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.
|
2016-04-14 05:42:56 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_VNCSERVER),y)
|
|
|
|
|
2016-04-21 04:05:32 +08:00
|
|
|
CSRCS += vnc_server.c vnc_negotiate.c vnc_updater.c vnc_receiver.c
|
2021-12-31 01:55:40 +08:00
|
|
|
CSRCS += vnc_raw.c vnc_rre.c vnc_color.c vnc_fbdev.c vnc_keymap.c
|
2016-04-15 06:19:04 +08:00
|
|
|
|
2022-02-24 17:57:15 +08:00
|
|
|
ifeq ($(CONFIG_VNCSERVER_TOUCH),y)
|
|
|
|
CSRCS += vnc_touch.c
|
|
|
|
endif
|
|
|
|
|
2022-07-10 00:13:09 +08:00
|
|
|
ifeq ($(CONFIG_VNCSERVER_KBD),y)
|
|
|
|
CSRCS += vnc_kbd.c
|
|
|
|
endif
|
|
|
|
|
2021-12-31 16:22:11 +08:00
|
|
|
DEPPATH += --dep-path video/vnc
|
2022-11-01 21:47:53 +08:00
|
|
|
CFLAGS += ${INCDIR_PREFIX}$(TOPDIR)$(DELIM)drivers$(DELIM)video$(DELIM)vnc
|
2021-12-31 16:22:11 +08:00
|
|
|
VPATH += :video/vnc
|
2016-04-14 05:42:56 +08:00
|
|
|
|
|
|
|
endif
|