mirror of
https://github.com/flynx/proxmox-utils.git
synced 2025-10-29 11:10:09 +00:00
34 lines
336 B
Makefile
34 lines
336 B
Makefile
|
|
|
|
|
|
config.global: config.global.example
|
|
vim "+0r config.global.example" $<
|
|
|
|
|
|
config: config.global
|
|
|
|
|
|
.PHONY: gate
|
|
gate: ./gate-traefik
|
|
$</make.sh
|
|
|
|
|
|
.PHONY: ns
|
|
ns:
|
|
$@/make.sh
|
|
|
|
.PHONY: ssh
|
|
ssh:
|
|
$@/make.sh
|
|
|
|
.PHONY: syncthing
|
|
syncthing:
|
|
$@/make.sh
|
|
|
|
|
|
.PHONY: all
|
|
all: config gate ns ssh syncthing
|
|
|
|
|
|
|