dockerfiles/Makefile

45 lines
454 B
Makefile

images=backup buku ddclient gitolite gitolite-stagit git-daemon rss-bridge syncthing tasks tor vdirsyncer wallabag xandikos
.PHONY: all $(images)
all: $(images)
BUILD = make -C $@
backup:
$(BUILD)
buku:
$(BUILD)
ddclient:
$(BUILD)
gitolite:
$(BUILD)
gitolite-stagit:
$(BUILD)
git-daemon:
$(BUILD)
rss-bridge:
$(BUILD)
syncthing:
$(BUILD)
tasks:
$(BUILD)
tor:
$(BUILD)
vdirsyncer:
$(BUILD)
xandikos:
$(BUILD)
wallabag:
$(BUILD)