X-Git-Url: http://id.pley.net/postfix.git/blobdiff_plain/72de8b29cf41c62a473d99788e18771c3a9aa446..6e5d449e15a8544549b3d2c9b941f4e461f7e2e0:/postfix/Makefile?ds=inline diff --git a/postfix/Makefile b/postfix/Makefile new file mode 100644 index 0000000..fb35215 --- /dev/null +++ b/postfix/Makefile @@ -0,0 +1,21 @@ +DST := /etc/postfix + +INPUTS := \ + main.cf \ + master.cf \ + postgrey_whitelist_clients.local \ + postgrey_whitelist_recipients \ + rbl_override \ + mysql/relay_domains.cf \ + mysql/virtual_alias_maps.cf \ + mysql/virtual_domains_maps.cf \ + mysql/virtual_mailbox_limits.cf \ + mysql/virtual_mailbox_maps.cf + +OUTPUTS := $(INPUTS:%=$(DST)/%) + +all: $(OUTPUTS) + +$(DST)/%: configuration/% + @mkdir -p $(@D) + cp $^ $@