Compare commits

..

No commits in common. "958e0e480d48ceb42c645642435cadfbda90ab07" and "179511a07e61e1d90fa0b6c0c36ef75e29ef1d52" have entirely different histories.

3 changed files with 0 additions and 19 deletions

1
.gitignore vendored
View File

@ -25,4 +25,3 @@ go.work.sum
# env file # env file
.env .env
build

View File

@ -1,11 +0,0 @@
BINARY = termbox
GO_ENV = GOOS=linux GOARCH=amd64
.PHONY: build clean
all: build
build: clean
go build -o build/${BINARY} cmd/termbox/main.go
clean:
rm -rf build

View File

@ -1,7 +0,0 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, Termbox!")
}