Add SPDX-License-Identifier to all files
authorJason Self <j@jxself.org>
Sun, 21 Apr 2019 00:26:46 +0000 (17:26 -0700)
committerJason Self <j@jxself.org>
Sun, 21 Apr 2019 00:26:46 +0000 (17:26 -0700)
To aid in automated identification.

28 files changed:
Makefile.am
configure.ac
zilasm/Makefile.am
zilasm/configure.ac
zilasm/directives.c
zilasm/directives.h
zilasm/header.c
zilasm/header.h
zilasm/labels.c
zilasm/labels.h
zilasm/main.c
zilasm/opcodes.c
zilasm/opcodes.h
zilasm/parser.c
zilasm/parser.h
zilasm/symtable.c
zilasm/symtable.h
zilasm/zmem.c
zilasm/zmem.h
zilc/Makefile.am
zilc/configure.ac
zilc/element.c
zilc/element.h
zilc/list.c
zilc/list.h
zilc/main.c
zilc/parser.y
zilc/scanner.l

index 586d1c2b119e91e54efac8a8a26612ec08c86d72..875d7c9fb8299868ce8461a2dee04b1da056ba70 100644 (file)
@@ -16,5 +16,6 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>
 #
+# SPDX-License-Identifier: AGPL-3.0-or-later
 
 SUBDIRS = zilasm zilc
index 5444c7ef1a113dd121b4cadc04bdff73d5315c51..0a6ea46e7d3cd2d65c1f2aed038e381869ba468f 100644 (file)
@@ -16,6 +16,7 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>
 #
+# SPDX-License-Identifier: AGPL-3.0-or-later
 
 AC_PREREQ([2.69])
 AC_INIT([zilutils], [0.1])
index b09e69a80c82f185b5f98a2737cc320a4798e103..9378980dcf0a0e5f0f16bcf873d56cbf96625ba9 100644 (file)
@@ -16,6 +16,7 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>
 #
+# SPDX-License-Identifier: AGPL-3.0-or-later
 
 bin_PROGRAMS = zilasm
 
index 26578ab2dff05ebc805955c4c40100eb1433870e..881332dc812382b7b14f15ed0145d551b509ca5c 100644 (file)
@@ -16,6 +16,7 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>
 #
+# SPDX-License-Identifier: AGPL-3.0-or-later
 
 AC_PREREQ([2.65])
 AC_INIT([zilasm], [0.1])
index 46a0720d59693b3ee342b90c406f3a3766c814a7..b5aaf1a463bb4d578d1e4637fb9f9a48316e85d8 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #include <stdlib.h>   /* bsearch */
index fc889d17ed3b1770aadf7f9ceacf4e3ed2eb38f8..5b5982ebf96ba7a30253e57a68c2b36e32da5997 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #ifndef ZILASM_DIRECTIVES
index 8eb0c3406fb430fc3521aa5b2c6bbb903451bbed..54ce75e95d553fc05b6645e452c3646cbd0528d3 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #include <string.h>  /* bzero */
index 542c064ea4d2811888c8e45dce1845779a8bddf0..28ab5952ed0376bf4e64bd267a486c7d118e59e7 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #ifndef ZILASM_HEADER
index 22715f6e337d3f87f0f5b1da4e0ca31acc7a401e..c396397ede4e8110741f413c54c3d5e8483b4990 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #include <assert.h>
index 19bd95ee2019cfdc320aee0bd223f87f5b1092d1..5ade61346d9d396e31c81c9258e76926528d1347 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #ifndef ZILASM_LABELS
index 38d6ec9eb27ef5bd5755a5f31fa507cf048e6e0a..f0f335b61e8c5fb3768d1eb1c53cb836dbaae1de 100644 (file)
@@ -16,6 +16,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #include <stdio.h>
index 5478891450aab19ce7f97f4fa23fa06ddd605345..1d9ad6436ad88cf48d895703527d4dcc5fd2fca0 100644 (file)
@@ -17,6 +17,8 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: GPL-3.0-or-later
  */
 
 #include <assert.h>
index bddcb0d90e53846c35ac6cf4c49053465370e31e..21e8ac0d0c9140eb45feb57b00ecf2673093a7d8 100644 (file)
@@ -17,6 +17,8 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: GPL-3.0-or-later
  */
 
 #ifndef ZILASM_OPCODES
index 7f8af7ec16fe1932c30e2c5c74cc23e4271a9a74..61038a4fc7e4061cdc76b7630e9c05c841bfea68 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #include <stdio.h>   /* fopen, fgets */
index ef4bee2a4e93c568dcb3b555f6c8c61f854b0ae8..c708f4d3bf75b5a3b0037b6d9a9eaafda1a3776d 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #ifndef ZILASM_PARSER
index d1dd9021fc59a2d8547c2b5299aa34ac15dd1b18..2c5735f93cebb003ce8241b4ae898c9bf7575bb8 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #include <string.h>
index aa72b0ed4296657c84ab6180eec1212314e22e52..bbb70843494120d40561216492026fb7a889956a 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #ifndef ZILASM_SYMTABLE
index b67e3c2ad4f82f7a2d6191440b318e88907750a5..623e52edfd520eb7351fe7483362f4292ab684cd 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #include <assert.h>
index 8ac1c02e195ea007a8a7b6133309e8c57e9bf210..640877008b509b2f40de2b931473f2c518980de6 100644 (file)
@@ -17,6 +17,8 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #ifndef ZILASM_ZMEM
index 7d3530e128fd877b26f63ed8fbca3549d86281a8..83b7c951da716efa1258f15a296bffb8c767632b 100644 (file)
@@ -16,6 +16,7 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>
 #
+# SPDX-License-Identifier: AGPL-3.0-or-later
 
 bin_PROGRAMS = zilc
 
index e3eac83ca1d81c1ff0394111607f7de964f59be1..f023f4a26695628d9c94fcbba0fb950ecf7eb1b6 100644 (file)
@@ -16,6 +16,7 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>
 #
+# SPDX-License-Identifier: AGPL-3.0-or-later
 
 AC_PREREQ([2.69])
 AC_INIT([zilc], [0.1])
index 07f7ffe239c007a49f81de864626b212bc55366b..c9ce8f383e39f51fb375805e0a96f5810e12dc35 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #include <stdlib.h>
index c8f720871bc6ae28f1149d908b5e82ae660f2574..722c10283916d53265a741bd1c27cb7c5c2b2106 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #ifndef __ELEMENT_H__
index 6b3f5d129190acd2bc2c9fe0ad7e2a9eea35d2a1..9364895c190383ba195aded0cb682d62a9446c4b 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #include "list.h"
index 5c80931bd1d1b1533a0d2d5951a4fe484b7502ef..71d54ccfa6b90452c366ccde7650fd51963d7dc3 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #ifndef __LIST_H__
index 4b62edf083919d6446b52052b2a6f8eb4e7c3e36..23b67f9c6afda65576806efb175c4ad76e052d44 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 #include <stdlib.h>
index 3b12436e4aeb9931e994d56c98d81397c02aaad6..b80df57da533ecdff550fd4a5475c8116142eb54 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 %{
index 17fe26dfd281df5a681a8c40cd2d23d3222cdeea..073448983436c12ad136ee7a96a0eb2461b63d65 100644 (file)
@@ -15,6 +15,8 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
  */
 
 %{