mirror of
https://github.com/flynx/proxmox-utils.git
synced 2025-10-29 03:00:09 +00:00
43 lines
463 B
Makefile
43 lines
463 B
Makefile
|
|
|
|
%.srv:
|
|
$*/make.sh
|
|
|
|
|
|
config.global: config.global.example
|
|
vim "+0r config.global.example" $@
|
|
|
|
|
|
config: config.global
|
|
|
|
|
|
.PHONY: gate
|
|
gate: ./gate-traefik
|
|
$</make.sh
|
|
|
|
|
|
.PHONY: ns
|
|
ns: ns.srv
|
|
|
|
.PHONY: ssh
|
|
ssh: ssh.srv
|
|
|
|
.PHONY: wireguard
|
|
wireguard: wireguard.srv
|
|
|
|
.PHONY: syncthing
|
|
syncthing: syncthing.srv
|
|
|
|
.PHONY: nextcloud
|
|
nextcloud: nextcloud.srv
|
|
|
|
.PHONY: gitea
|
|
gitea: gitea.srv
|
|
|
|
|
|
.PHONY: all
|
|
all: config gate ns ssh wireguard syncthing nextcloud gitea
|
|
|
|
|
|
|