diff options
author | KatolaZ <katolaz@freaknet.org> | 2017-07-03 13:45:44 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2017-07-03 13:45:44 +0100 |
commit | 3fa367ce4edeee5f6119235ef0f32a1ab3eb0139 (patch) | |
tree | 4e1a2eeeaf560d1ffdb0c28289f02d64c87bb077 /Makefile | |
parent | 13c5a2ab438f2496370ef10e7df8096e30962b66 (diff) |
Moved main.go -> binnit.go
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |