mirror of
https://github.com/Zygo/bees.git
synced 2025-05-18 05:45:45 +02:00
It happened more than once that I ran just "make install" only, which doesn't install the scripts. Let's fix this by renaming the previous install target to install_bees, and then make a new install target which depends on each install target and thus installs the complete distribution. It doesn't hurt to install those few scripts. I don't see the point in separating the install targets as it was previously done. Signed-off-by: Kai Krakow <kai@kaishome.de>
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
PREFIX ?= /
|
|
LIBEXEC_PREFIX ?= $(PREFIX)/usr/lib/bees
|
|
|
|
MARKDOWN := $(firstword $(shell which markdown markdown2 markdown_py 2>/dev/null))
|
|
MARKDOWN ?= markdown
|
|
|
|
# allow local configuration to override above variables
|
|
-include localconf
|
|
|
|
default all: lib src scripts test README.html
|
|
|
|
clean: ## Cleanup
|
|
git clean -dfx -e localconf
|
|
|
|
.PHONY: lib src test
|
|
|
|
lib: ## Build libs
|
|
$(MAKE) -C lib
|
|
|
|
src: ## Build bins
|
|
src: lib
|
|
$(MAKE) -C src
|
|
|
|
test: ## Run tests
|
|
test: lib src
|
|
$(MAKE) -C test
|
|
|
|
scripts/%: scripts/%.in
|
|
sed -e's#@LIBEXEC_PREFIX@#$(LIBEXEC_PREFIX)#' -e's#@PREFIX@#$(PREFIX)#' "$<" >"$@"
|
|
|
|
scripts: scripts/beesd scripts/beesd@.service
|
|
|
|
README.html: README.md
|
|
$(MARKDOWN) README.md > README.html.new
|
|
mv -f README.html.new README.html
|
|
|
|
install_bees: ## Install bees + libs
|
|
install_bees: lib src test
|
|
install -Dm644 lib/libcrucible.so $(PREFIX)/usr/lib/libcrucible.so
|
|
install -Dm755 bin/bees $(LIBEXEC_PREFIX)/bees
|
|
|
|
install_scripts: ## Install scipts
|
|
install_scripts: scripts
|
|
install -Dm755 scripts/beesd $(PREFIX)/usr/sbin/beesd
|
|
install -Dm644 scripts/beesd.conf.sample $(PREFIX)/etc/bees/beesd.conf.sample
|
|
install -Dm644 scripts/beesd@.service $(PREFIX)/lib/systemd/system/beesd@.service
|
|
|
|
install: ## Install distribution
|
|
install: install_bees install_scripts
|
|
|
|
help: ## Show help
|
|
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##/\t/'
|