summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-02-23 10:35:15 -0700
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-02-23 10:39:37 -0700
commit8f7feb7852ec7cb15c7f51de78f2c474d8807bd7 (patch)
treeda8114f65fbb37b7b6caa5a1138b952403aa7206 /GNUmakefile
parent19a41387633e53d64d8a0ae69f3d3d3e35641c8d (diff)
Require license notices static files too
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 3540302..f1ed37f 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -29,8 +29,8 @@ generate/files += COPYING.txt
COPYING.txt:
wget --no-use-server-timestamps -O $@ https://www.gnu.org/licenses/agpl-3.0.txt
-generate/files += cmd/sbc_harness/static/Documentation/YOUR_RIGHTS_AND_OBLIGATIONS/newlib.txt
-cmd/sbc_harness/static/Documentation/YOUR_RIGHTS_AND_OBLIGATIONS/newlib.txt: /usr/share/licenses/arm-none-eabi-newlib/COPYING.NEWLIB
+generate/files += 3rd-party/COPYING.newlib.txt
+3rd-party/COPYING.newlib.txt: /usr/share/licenses/arm-none-eabi-newlib/COPYING.NEWLIB
cp $< $@
generate/files += 3rd-party/linux-errno.txt
@@ -119,7 +119,7 @@ lint/make lint/cmake lint/gitignore lint/ini lint/9p lint/markdown: lint/%:
lint/unknown: lint/%: build-aux/lint-unknown
./build-aux/lint-unknown $(sources_$*)
lint/all: lint/%: build-aux/lint-generic build-aux/get-dscname
- ./build-aux/lint-generic $$(printf '%s\n' $(sources_$*) | grep -vE '/static/')
+ ./build-aux/lint-generic '%s\n' $(sources_$*)
.PHONY: lint lint/%
# `format` #########