2022-07-20 09:21:40 +02:00
.DEFAULT : help
.PHONY : help
help :
@fgrep -h "##" $( MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##/\n\t/'
.PHONY : debs /kanidm
debs/kanidm : ## Build the Kanidm CLI package - make sure you set the environment variable KANIDM_BUILD_PROFILE
debs/kanidm :
2023-01-25 00:45:55 +01:00
bash ./platform/debian/build_kanidm.sh kanidm
2022-07-20 09:21:40 +02:00
.PHONY : debs /kanidmd
debs/kanidmd : ## Build the Kanidmd package - make sure you set the environment variable KANIDM_BUILD_PROFILE
debs/kanidmd :
2023-01-25 00:45:55 +01:00
bash ./platform/debian/build_kanidm.sh kanidmd
2022-07-20 09:21:40 +02:00
.PHONY : debs /kanidm -unixd
debs/kanidm-unixd : ## Build the Kanidm UNIX tools package (PAM/NSS, unixd and related tools) - make sure you set the environment variable KANIDM_BUILD_PROFILE
debs/kanidm-unixd :
2023-01-25 00:45:55 +01:00
bash ./platform/debian/build_kanidm.sh kanidm-unixd
2022-07-20 09:21:40 +02:00
.PHONY : debs /all
debs/all : ## Build all the .deb packages - make sure you set the environment variable KANIDM_BUILD_PROFILE
2023-01-25 00:45:55 +01:00
debs/all : debs /kanidmd debs /kanidm debs /kanidm -unixd