This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch releases/12.8
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git

commit a88307df93a36b98a8f109a483d62686441ecf8c
Author: Alin Jerpelea <[email protected]>
AuthorDate: Wed Dec 18 07:13:55 2024 +0100

    benchmarks: migrate to SPDX identifier
    
    Most tools used for compliance and SBOM generation use SPDX identifiers
    This change brings us a step closer to an easy SBOM generation.
    
    Signed-off-by: Alin Jerpelea <[email protected]>
---
 benchmarks/CMakeLists.txt                  | 2 ++
 benchmarks/Make.defs                       | 2 ++
 benchmarks/Makefile                        | 2 ++
 benchmarks/cachespeed/CMakeLists.txt       | 2 ++
 benchmarks/cachespeed/Make.defs            | 2 ++
 benchmarks/cachespeed/Makefile             | 2 ++
 benchmarks/cachespeed/cachespeed_main.c    | 2 ++
 benchmarks/coremark-pro/CMakeLists.txt     | 2 ++
 benchmarks/coremark-pro/Make.defs          | 2 ++
 benchmarks/coremark-pro/Makefile           | 2 ++
 benchmarks/coremark/CMakeLists.txt         | 2 ++
 benchmarks/coremark/Make.defs              | 2 ++
 benchmarks/coremark/Makefile               | 2 ++
 benchmarks/dhrystone/CMakeLists.txt        | 2 ++
 benchmarks/dhrystone/Make.defs             | 2 ++
 benchmarks/dhrystone/Makefile              | 2 ++
 benchmarks/fio/CMakeLists.txt              | 2 ++
 benchmarks/fio/Make.defs                   | 2 ++
 benchmarks/fio/Makefile                    | 2 ++
 benchmarks/iozone/CMakeLists.txt           | 2 ++
 benchmarks/iozone/Make.defs                | 2 ++
 benchmarks/iozone/Makefile                 | 2 ++
 benchmarks/osperf/CMakeLists.txt           | 2 ++
 benchmarks/osperf/Make.defs                | 2 ++
 benchmarks/osperf/Makefile                 | 2 ++
 benchmarks/osperf/osperf.c                 | 2 ++
 benchmarks/ramspeed/Make.defs              | 2 ++
 benchmarks/ramspeed/Makefile               | 2 ++
 benchmarks/ramspeed/ramspeed_main.c        | 2 ++
 benchmarks/rt-tests/numa.h                 | 2 ++
 benchmarks/spinlock_bench/CMakeLists.txt   | 2 ++
 benchmarks/spinlock_bench/Make.defs        | 2 ++
 benchmarks/spinlock_bench/Makefile         | 2 ++
 benchmarks/spinlock_bench/spinlock_bench.c | 2 ++
 benchmarks/superpi/CMakeLists.txt          | 2 ++
 benchmarks/superpi/Make.defs               | 2 ++
 benchmarks/superpi/Makefile                | 2 ++
 37 files changed, 74 insertions(+)

diff --git a/benchmarks/CMakeLists.txt b/benchmarks/CMakeLists.txt
index 3954bb7c1..9f3c66bf5 100644
--- a/benchmarks/CMakeLists.txt
+++ b/benchmarks/CMakeLists.txt
@@ -1,6 +1,8 @@
 # 
##############################################################################
 # apps/benchmarks/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
diff --git a/benchmarks/Make.defs b/benchmarks/Make.defs
index 73c1413b6..cfe7377d9 100644
--- a/benchmarks/Make.defs
+++ b/benchmarks/Make.defs
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/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
diff --git a/benchmarks/Makefile b/benchmarks/Makefile
index 905ea11dd..389f6c5a7 100644
--- a/benchmarks/Makefile
+++ b/benchmarks/Makefile
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/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
diff --git a/benchmarks/cachespeed/CMakeLists.txt 
b/benchmarks/cachespeed/CMakeLists.txt
index f41b75a2f..18a2a39d4 100644
--- a/benchmarks/cachespeed/CMakeLists.txt
+++ b/benchmarks/cachespeed/CMakeLists.txt
@@ -1,6 +1,8 @@
 # 
##############################################################################
 # apps/benchmarks/cachespeed/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
diff --git a/benchmarks/cachespeed/Make.defs b/benchmarks/cachespeed/Make.defs
index 721bda7ca..5a26c8938 100644
--- a/benchmarks/cachespeed/Make.defs
+++ b/benchmarks/cachespeed/Make.defs
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/cachespeed/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
diff --git a/benchmarks/cachespeed/Makefile b/benchmarks/cachespeed/Makefile
index 76407f77c..4491b514c 100644
--- a/benchmarks/cachespeed/Makefile
+++ b/benchmarks/cachespeed/Makefile
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/cachespeed/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
diff --git a/benchmarks/cachespeed/cachespeed_main.c 
b/benchmarks/cachespeed/cachespeed_main.c
index 30bd06eef..c895c3b8f 100644
--- a/benchmarks/cachespeed/cachespeed_main.c
+++ b/benchmarks/cachespeed/cachespeed_main.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * apps/benchmarks/cachespeed/cachespeed_main.c
  *
+ * 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
diff --git a/benchmarks/coremark-pro/CMakeLists.txt 
b/benchmarks/coremark-pro/CMakeLists.txt
index ab954f87a..5cd19227b 100644
--- a/benchmarks/coremark-pro/CMakeLists.txt
+++ b/benchmarks/coremark-pro/CMakeLists.txt
@@ -1,6 +1,8 @@
 # 
##############################################################################
 # apps/benchmarks/coremark-pro/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
diff --git a/benchmarks/coremark-pro/Make.defs 
b/benchmarks/coremark-pro/Make.defs
index 2a195adaf..144f4ce3d 100644
--- a/benchmarks/coremark-pro/Make.defs
+++ b/benchmarks/coremark-pro/Make.defs
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/coremark-pro/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
diff --git a/benchmarks/coremark-pro/Makefile b/benchmarks/coremark-pro/Makefile
index 0fa3a0986..ccc6d5bbb 100644
--- a/benchmarks/coremark-pro/Makefile
+++ b/benchmarks/coremark-pro/Makefile
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/coremark-pro/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
diff --git a/benchmarks/coremark/CMakeLists.txt 
b/benchmarks/coremark/CMakeLists.txt
index aa6bfa362..3aef2967a 100644
--- a/benchmarks/coremark/CMakeLists.txt
+++ b/benchmarks/coremark/CMakeLists.txt
@@ -1,6 +1,8 @@
 # 
##############################################################################
 # apps/benchmarks/coremark/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
diff --git a/benchmarks/coremark/Make.defs b/benchmarks/coremark/Make.defs
index aa7a92c56..971b261df 100644
--- a/benchmarks/coremark/Make.defs
+++ b/benchmarks/coremark/Make.defs
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/coremark/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
diff --git a/benchmarks/coremark/Makefile b/benchmarks/coremark/Makefile
index e5526cd57..c1b02e5f0 100644
--- a/benchmarks/coremark/Makefile
+++ b/benchmarks/coremark/Makefile
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/coremark/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
diff --git a/benchmarks/dhrystone/CMakeLists.txt 
b/benchmarks/dhrystone/CMakeLists.txt
index dd503077a..166692d36 100644
--- a/benchmarks/dhrystone/CMakeLists.txt
+++ b/benchmarks/dhrystone/CMakeLists.txt
@@ -1,6 +1,8 @@
 # 
##############################################################################
 # apps/benchmarks/dhrystone/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
diff --git a/benchmarks/dhrystone/Make.defs b/benchmarks/dhrystone/Make.defs
index 1c8666c5a..2662abde0 100644
--- a/benchmarks/dhrystone/Make.defs
+++ b/benchmarks/dhrystone/Make.defs
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/dhrystone/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
diff --git a/benchmarks/dhrystone/Makefile b/benchmarks/dhrystone/Makefile
index 17f0912d4..6e175ac15 100644
--- a/benchmarks/dhrystone/Makefile
+++ b/benchmarks/dhrystone/Makefile
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/dhrystone/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
diff --git a/benchmarks/fio/CMakeLists.txt b/benchmarks/fio/CMakeLists.txt
index f279bcadc..5dae3f20d 100644
--- a/benchmarks/fio/CMakeLists.txt
+++ b/benchmarks/fio/CMakeLists.txt
@@ -1,6 +1,8 @@
 # 
##############################################################################
 # apps/benchmarks/fio/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
diff --git a/benchmarks/fio/Make.defs b/benchmarks/fio/Make.defs
index c9d694193..27c568349 100644
--- a/benchmarks/fio/Make.defs
+++ b/benchmarks/fio/Make.defs
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/fio/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
diff --git a/benchmarks/fio/Makefile b/benchmarks/fio/Makefile
index 34c80c934..c7950873d 100644
--- a/benchmarks/fio/Makefile
+++ b/benchmarks/fio/Makefile
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/fio/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
diff --git a/benchmarks/iozone/CMakeLists.txt b/benchmarks/iozone/CMakeLists.txt
index 843fa53ac..0559ad63e 100644
--- a/benchmarks/iozone/CMakeLists.txt
+++ b/benchmarks/iozone/CMakeLists.txt
@@ -1,6 +1,8 @@
 # 
##############################################################################
 # apps/benchmarks/iozone/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
diff --git a/benchmarks/iozone/Make.defs b/benchmarks/iozone/Make.defs
index 09ed336e1..b3712058a 100644
--- a/benchmarks/iozone/Make.defs
+++ b/benchmarks/iozone/Make.defs
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/iozone/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
diff --git a/benchmarks/iozone/Makefile b/benchmarks/iozone/Makefile
index 3f11b2ccc..22985764c 100644
--- a/benchmarks/iozone/Makefile
+++ b/benchmarks/iozone/Makefile
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/iozone/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
diff --git a/benchmarks/osperf/CMakeLists.txt b/benchmarks/osperf/CMakeLists.txt
index dbf29d29e..e47386d09 100644
--- a/benchmarks/osperf/CMakeLists.txt
+++ b/benchmarks/osperf/CMakeLists.txt
@@ -1,6 +1,8 @@
 # 
##############################################################################
 # apps/benchmarks/osperf/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
diff --git a/benchmarks/osperf/Make.defs b/benchmarks/osperf/Make.defs
index 29888f7ae..1efa69044 100644
--- a/benchmarks/osperf/Make.defs
+++ b/benchmarks/osperf/Make.defs
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/osperf/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
diff --git a/benchmarks/osperf/Makefile b/benchmarks/osperf/Makefile
index 29e94f2f1..a72e1f18e 100644
--- a/benchmarks/osperf/Makefile
+++ b/benchmarks/osperf/Makefile
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/osperf/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
diff --git a/benchmarks/osperf/osperf.c b/benchmarks/osperf/osperf.c
index 66d24ac3f..36c1f4914 100644
--- a/benchmarks/osperf/osperf.c
+++ b/benchmarks/osperf/osperf.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * apps/benchmarks/osperf/osperf.c
  *
+ * 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
diff --git a/benchmarks/ramspeed/Make.defs b/benchmarks/ramspeed/Make.defs
index fd3c6673e..b78ae67fb 100644
--- a/benchmarks/ramspeed/Make.defs
+++ b/benchmarks/ramspeed/Make.defs
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/ramspeed/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
diff --git a/benchmarks/ramspeed/Makefile b/benchmarks/ramspeed/Makefile
index f9376a9d5..c11a67ff2 100644
--- a/benchmarks/ramspeed/Makefile
+++ b/benchmarks/ramspeed/Makefile
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/ramspeed/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
diff --git a/benchmarks/ramspeed/ramspeed_main.c 
b/benchmarks/ramspeed/ramspeed_main.c
index b11bdaf76..a49e760ba 100644
--- a/benchmarks/ramspeed/ramspeed_main.c
+++ b/benchmarks/ramspeed/ramspeed_main.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * apps/benchmarks/ramspeed/ramspeed_main.c
  *
+ * 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
diff --git a/benchmarks/rt-tests/numa.h b/benchmarks/rt-tests/numa.h
index de3a01fad..6938e9eb9 100644
--- a/benchmarks/rt-tests/numa.h
+++ b/benchmarks/rt-tests/numa.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * apps/benchmarks/rt-tests/numa.h
  *
+ * 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
diff --git a/benchmarks/spinlock_bench/CMakeLists.txt 
b/benchmarks/spinlock_bench/CMakeLists.txt
index 2707c223a..80ed3afe0 100644
--- a/benchmarks/spinlock_bench/CMakeLists.txt
+++ b/benchmarks/spinlock_bench/CMakeLists.txt
@@ -1,6 +1,8 @@
 # 
##############################################################################
 # apps/benchmarks/spinlock_bench/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
diff --git a/benchmarks/spinlock_bench/Make.defs 
b/benchmarks/spinlock_bench/Make.defs
index e82177760..6031b9eff 100644
--- a/benchmarks/spinlock_bench/Make.defs
+++ b/benchmarks/spinlock_bench/Make.defs
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/spinlock_bench/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
diff --git a/benchmarks/spinlock_bench/Makefile 
b/benchmarks/spinlock_bench/Makefile
index fada2fb61..e1a3f86c6 100644
--- a/benchmarks/spinlock_bench/Makefile
+++ b/benchmarks/spinlock_bench/Makefile
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/spinlock_bench/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
diff --git a/benchmarks/spinlock_bench/spinlock_bench.c 
b/benchmarks/spinlock_bench/spinlock_bench.c
index a6014ca9a..bc8c8b5ed 100644
--- a/benchmarks/spinlock_bench/spinlock_bench.c
+++ b/benchmarks/spinlock_bench/spinlock_bench.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * apps/benchmarks/spinlock_bench/spinlock_bench.c
  *
+ * 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
diff --git a/benchmarks/superpi/CMakeLists.txt 
b/benchmarks/superpi/CMakeLists.txt
index aec5016d8..c15a98ff0 100644
--- a/benchmarks/superpi/CMakeLists.txt
+++ b/benchmarks/superpi/CMakeLists.txt
@@ -1,6 +1,8 @@
 # 
##############################################################################
 # apps/benchmarks/superpi/CMakeList.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
diff --git a/benchmarks/superpi/Make.defs b/benchmarks/superpi/Make.defs
index 570daccde..a5c1095d4 100644
--- a/benchmarks/superpi/Make.defs
+++ b/benchmarks/superpi/Make.defs
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/superpi/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
diff --git a/benchmarks/superpi/Makefile b/benchmarks/superpi/Makefile
index 74e9b2b4d..fbdb445d3 100644
--- a/benchmarks/superpi/Makefile
+++ b/benchmarks/superpi/Makefile
@@ -1,6 +1,8 @@
 ############################################################################
 # apps/benchmarks/superpi/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

Reply via email to