This website works better with JavaScript.
Home
Explore
Help
Sign In
tovi
/
fenc
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Added makefile and rename
master
Tovi Jaeschke-Rogers
4 years ago
parent
8fa5fb758e
commit
3833d00b9d
4 changed files
with
17 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
.gitignore
BIN
fenc
+1
-1
fenc.go
+13
-0
makefile
+ 3
- 0
.gitignore
View File
@ -0,0 +1,3 @@
fenc-linux
fenc-darwin
fenc-windows.exe
BIN
fenc
View File
main.go → fenc.go
View File
+ 13
- 0
makefile
View File
@ -0,0 +1,13 @@
# Fenc Makefile
default
:
$(
info build
)
$(
info clean
)
build
:
GOOS
=
linux
GOARCH
=
amd64 go build -o fenc-linux fenc.go
GOOS
=
darwin
GOARCH
=
amd64 go build -o fenc-darwin fenc.go
GOOS
=
windows
GOARCH
=
amd64 go build -o fenc-windows.exe fenc.go
clean
:
rm fenc-linux fenc-darwin fenc-windows.exe
Write
Preview
Loading…
Cancel
Save