From 26379253c8c0c119ed9717ab066bd7a095214065 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 29 Jan 2024 04:46:27 -0500 Subject: [PATCH] Add SPDX headers. --- Makefile | 3 +++ control | 3 +++ superhack.c | 1 + wumpus.c | 1 + 4 files changed, 8 insertions(+) diff --git a/Makefile b/Makefile index a10f41a..fd9188b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,9 @@ # # Makefile for `Hunt the Wumpus' and `Superhack' games # +# +# SPDX-FileCopyrightText: (C) Eric S. Raymond +# SPDX-License-Identifier: BSD-2-Clause VERS=1.9 prefix?=/usr diff --git a/control b/control index 5c1b9a8..44825b9 100644 --- a/control +++ b/control @@ -1,5 +1,8 @@ # This is not a real Debian control file, though the syntax is compatible. # It's project metadata for the shipper tool +# +# SPDX-FileCopyrightText: (C) Eric S. Raymond +# SPDX-License-Identifier: BSD-2-Clause Package: wumpus diff --git a/superhack.c b/superhack.c index 6c2b29e..22333f9 100644 --- a/superhack.c +++ b/superhack.c @@ -10,6 +10,7 @@ * if you believe *that*... * * SPDX-License-Identifier: BSD-2-Clause + * SPDX-FileCopyrightText: (C) Eric S. Raymond */ #include diff --git a/wumpus.c b/wumpus.c index dd20f4e..3ce60c6 100644 --- a/wumpus.c +++ b/wumpus.c @@ -27,6 +27,7 @@ * limber up your fingers for a trip to nostalgia-land... * * SPDX-License-Identifier: BSD-2-Clause + * SPDX-FileCopyrightText: (C) Eric S. Raymond */ #include -- 2.31.1