14 lines
337 B
Makefile
14 lines
337 B
Makefile
ARCHITECTURES=arm64 armhf amd64
|
|
TARGETS=lidarr prowlarr radarr readarr sonarr
|
|
|
|
.PHONY: default
|
|
default: ARCHITECTURES=$(shell dpkg --print-architecture)
|
|
default: all
|
|
|
|
.PHONY: all
|
|
all:
|
|
for target in $(TARGETS); do for architecture in $(ARCHITECTURES); do ./build.sh $$target $$architecture; done; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf debs
|