summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKatolaZ <katolaz@freaknet.org>2017-07-03 13:45:44 +0100
committerKatolaZ <katolaz@freaknet.org>2017-07-03 13:45:44 +0100
commit3fa367ce4edeee5f6119235ef0f32a1ab3eb0139 (patch)
tree4e1a2eeeaf560d1ffdb0c28289f02d64c87bb077 /Makefile
parent13c5a2ab438f2496370ef10e7df8096e30962b66 (diff)
Moved main.go -> binnit.go
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 18f72b0..f9873c1 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,6 @@ GO=go
all: binnit
-binnit: main.go templ.go config.go
- $(GO) build -o binnit main.go templ.go config.go
+binnit: binnit.go templ.go config.go
+ $(GO) build -o binnit binnit.go templ.go config.go