1
0
forked from bonsai/harakit

GNUmakefile: made install recipe not install non-existent files

This commit is contained in:
Emma Tebibyte 2023-12-28 01:07:30 -07:00
parent 36c0c9193c
commit e16e7bd322
Signed by untrusted user: emma
GPG Key ID: 06FA419A1698C270

View File

@ -48,10 +48,10 @@ clean:
install: build install: build
mkdir -p $(PREFIX)/bin $(PREFIX)/lib mkdir -p $(PREFIX)/bin $(PREFIX)/lib
mkdir -p $(PREFIX)/man/man1 $(PREFIX)/man/man3 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 build/bin/* $(PREFIX)/bin/
cp -f docs/*.1 $(PREFIX)/man/man1/ cp -f docs/*.1 $(PREFIX)/man/man1/
cp -f docs/*.3 $(PREFIX)/man/man3/ # cp -f docs/*.3 $(PREFIX)/man/man3/
test: build test: build
tests/cc-compat.sh tests/cc-compat.sh