dockerfiles/Makefile

45 lines
458 B
Makefile
Raw Normal View History

2021-01-31 17:46:03 +01:00
images=backup buku ddclient gitolite gitolite-pystagit git-daemon rss-bridge syncthing tasks tor vdirsyncer wallabag xandikos
2020-04-08 13:05:07 +02:00
.PHONY: all $(images)
all: $(images)
BUILD = make -C $@
backup:
$(BUILD)
buku:
$(BUILD)
ddclient:
$(BUILD)
gitolite:
$(BUILD)
2021-01-31 19:07:52 +01:00
gitolite-pystagit:
2020-04-08 13:05:07 +02:00
$(BUILD)
git-daemon:
$(BUILD)
rss-bridge:
$(BUILD)
syncthing:
$(BUILD)
tasks:
$(BUILD)
tor:
$(BUILD)
vdirsyncer:
$(BUILD)
xandikos:
$(BUILD)
wallabag:
$(BUILD)