summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2020-01-04 06:39:30 +0000
committerMike Crute <mike@crute.us>2020-08-11 02:54:46 +0000
commitedb2c73150c786126c63c96cee7dae5e1c10b6df (patch)
tree863ea8743a94c816664ebbecc9e9a68387e2ed7a /Makefile
parent8ed9671c0b4f78711858448cf3b4ee9af0eba51e (diff)
downloadgo_ddns_manager-edb2c73150c786126c63c96cee7dae5e1c10b6df.tar.bz2
go_ddns_manager-edb2c73150c786126c63c96cee7dae5e1c10b6df.tar.xz
go_ddns_manager-edb2c73150c786126c63c96cee7dae5e1c10b6df.zip
Refator using le utils
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0ea2c0d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,4 @@
1GO_FILES := $(shell find . -name '*.go')
2
3dns-service: main.go $(GO_FILES)
4 go build -o $@ $<