mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* Update CONTRIBUTORS * Fix debian & ubuntu packaging * Use standard way to install pam config * Fix simple_pkg.sh & add pam nss instructions * Merge ssh with unixd; update CI to build for multiple os versions; upload packages to artifacts
25 lines
948 B
Makefile
25 lines
948 B
Makefile
.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:
|
|
bash ./platform/debian/build_kanidm.sh kanidm
|
|
|
|
.PHONY: debs/kanidmd
|
|
debs/kanidmd: ## Build the Kanidmd package - make sure you set the environment variable KANIDM_BUILD_PROFILE
|
|
debs/kanidmd:
|
|
bash ./platform/debian/build_kanidm.sh kanidmd
|
|
|
|
.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:
|
|
bash ./platform/debian/build_kanidm.sh kanidm-unixd
|
|
|
|
.PHONY: debs/all
|
|
debs/all: ## Build all the .deb packages - make sure you set the environment variable KANIDM_BUILD_PROFILE
|
|
debs/all: debs/kanidmd debs/kanidm debs/kanidm-unixd
|