This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit d88aa87e38ee9fba6de6471f87b55eac72ce82a1 Author: simbit18 <[email protected]> AuthorDate: Sat Aug 8 17:56:41 2026 +0200 apps/interpreters/jimtcl: nxstyle fix Missing file header - fix Missing file header Signed-off-by: simbit18 <[email protected]> --- interpreters/jimtcl/CMakeLists.txt | 22 ++++++++++++++++++++++ interpreters/jimtcl/Make.defs | 22 ++++++++++++++++++++++ interpreters/jimtcl/Makefile | 22 ++++++++++++++++++++++ 3 files changed, 66 insertions(+) diff --git a/interpreters/jimtcl/CMakeLists.txt b/interpreters/jimtcl/CMakeLists.txt index ba3b64697..c9df153f2 100644 --- a/interpreters/jimtcl/CMakeLists.txt +++ b/interpreters/jimtcl/CMakeLists.txt @@ -1,3 +1,25 @@ +# ############################################################################## +# apps/interpreters/jimtcl/CMakeLists.txt +# +# SPDX-License-Identifier: Apache-2.0 +# +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. +# +# ############################################################################## + if(CONFIG_INTERPRETERS_JIMTCL) set(JIMTCL_VERSION 0.83) set(JIMTCL_TARBALL ${JIMTCL_VERSION}.tar.gz) diff --git a/interpreters/jimtcl/Make.defs b/interpreters/jimtcl/Make.defs index eb5a44b0c..2634e479a 100644 --- a/interpreters/jimtcl/Make.defs +++ b/interpreters/jimtcl/Make.defs @@ -1,3 +1,25 @@ +############################################################################ +# apps/interpreters/jimtcl/Make.defs +# +# SPDX-License-Identifier: Apache-2.0 +# +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. +# +############################################################################ + ifneq ($(CONFIG_INTERPRETERS_JIMTCL),) CONFIGURED_APPS += $(APPDIR)/interpreters/jimtcl endif \ No newline at end of file diff --git a/interpreters/jimtcl/Makefile b/interpreters/jimtcl/Makefile index f470167f2..b4645abab 100644 --- a/interpreters/jimtcl/Makefile +++ b/interpreters/jimtcl/Makefile @@ -1,3 +1,25 @@ +############################################################################ +# apps/interpreters/jimtcl/Makefile +# +# SPDX-License-Identifier: Apache-2.0 +# +# 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 +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. +# +############################################################################ + include $(APPDIR)/Make.defs PROGNAME = jimsh
