add build automation

This commit is contained in:
sfigato 2024-11-27 22:56:46 +01:00
parent fd739ba9e6
commit 7bd20d3495
Signed by: blallo
GPG Key ID: C530464EEDCF489A
2 changed files with 8 additions and 0 deletions

2
Makefile Normal file
View File

@ -0,0 +1,2 @@
build-%:
make -C $* build

6
openldap/Makefile Normal file
View File

@ -0,0 +1,6 @@
DOCKER ?= docker
IMAGE ?= unit/slapd
.PHONY: build
build:
$(DOCKER) build -t $(IMAGE) .