2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 21:47:59 +00:00

Add install target for Perl DLZ module

Perl DLZ module Makefile lacked "install" target, add it as we want to
test DLZ module installation in the CI.
This commit is contained in:
Michal Nowak 2022-05-30 20:55:30 +02:00
parent 69b7e4362d
commit 35e44978b5
No known key found for this signature in database
GPG Key ID: 24A3E8463AEE5E56

View File

@ -57,3 +57,7 @@ $(LIBNAME): dlz_perl_driver.o dlz_perl_callback_clientinfo.o dlz_perl_callback.o
clean:
rm -f dlz_perl_driver.o dlz_perl_driver.so dlz_perl_callback_clientinfo.c dlz_perl_callback_clientinfo.o dlz_perl_callback.c dlz_perl_callback.o
install: dlz_perl_driver.so
mkdir -p $(DESTDIR)$(libdir)
install dlz_perl_driver.so $(DESTDIR)$(libdir)