|
| 1 | +############################################################################ |
| 2 | +# apps/examples/uvc_cam/Makefile |
| 3 | +# |
| 4 | +# SPDX-License-Identifier: Apache-2.0 |
| 5 | +# |
| 6 | +# Licensed to the Apache Software Foundation (ASF) under one or more |
| 7 | +# contributor license agreements. See the NOTICE file distributed with |
| 8 | +# this work for additional information regarding copyright ownership. The |
| 9 | +# ASF licenses this file to you under the Apache License, Version 2.0 (the |
| 10 | +# "License"); you may not use this file except in compliance with the |
| 11 | +# License. You may obtain a copy of the License at |
| 12 | +# |
| 13 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | +# |
| 15 | +# Unless required by applicable law or agreed to in writing, software |
| 16 | +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 17 | +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 18 | +# License for the specific language governing permissions and limitations |
| 19 | +# under the License. |
| 20 | +# |
| 21 | +############################################################################ |
| 22 | + |
| 23 | +include $(APPDIR)/Make.defs |
| 24 | + |
| 25 | +# UVC Camera streaming application |
| 26 | + |
| 27 | +PROGNAME = $(CONFIG_EXAMPLES_UVC_CAM_PROGNAME) |
| 28 | +PRIORITY = $(CONFIG_EXAMPLES_UVC_CAM_PRIORITY) |
| 29 | +STACKSIZE = $(CONFIG_EXAMPLES_UVC_CAM_STACKSIZE) |
| 30 | +MODULE = $(CONFIG_EXAMPLES_UVC_CAM) |
| 31 | + |
| 32 | +MAINSRC = uvc_cam_main.c |
| 33 | + |
| 34 | +include $(APPDIR)/Application.mk |
0 commit comments