1
0
Fork 0

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
1 changed files with 2 additions and 2 deletions

View File

@ -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