From e16e7bd322dd8e66e1f42c765f6ed11bb0f56c3d Mon Sep 17 00:00:00 2001 From: emma Date: Thu, 28 Dec 2023 01:07:30 -0700 Subject: [PATCH] GNUmakefile: made install recipe not install non-existent files --- GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index ca38f5c..5324812 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -48,10 +48,10 @@ clean: install: build mkdir -p $(PREFIX)/bin $(PREFIX)/lib mkdir -p $(PREFIX)/man/man1 $(PREFIX)/man/man3 - cp -f build/lib/*.so $(PREFIX)/lib/ + # cp -f build/lib/*.so $(PREFIX)/lib/ cp -f build/bin/* $(PREFIX)/bin/ cp -f docs/*.1 $(PREFIX)/man/man1/ - cp -f docs/*.3 $(PREFIX)/man/man3/ + # cp -f docs/*.3 $(PREFIX)/man/man3/ test: build tests/cc-compat.sh