diff options
Diffstat (limited to 'go/Makefile')
-rw-r--r-- | go/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/go/Makefile b/go/Makefile new file mode 100644 index 00000000..6c827f2b --- /dev/null +++ b/go/Makefile @@ -0,0 +1,10 @@ +help:;@grep -v ^help: Makefile + +install: \ + /etc/systemd/system/go.service \ + /etc/conf.d/go.env + systemctl daemon-reload + +/etc/%: etc/% + @! test -e $@ || { echo file already exists: $@; exit 23; } + cp $< $@ |