Working on UI

This commit is contained in:
2023-01-06 09:34:55 -06:00
parent a8c1812bbf
commit c98a4dea0c
7 changed files with 392 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
# This how we want to name the binary output
# This is what we want to name the binary output
BINARY=gime
# These are the values we want to pass for VERSION and BUILD
@@ -14,5 +14,8 @@ LDFLAGS=-ldflags "-w -s -X cmd.Version=${VERSION} -X cmd.Build=${BUILD}"
gime:
go build ${LDFLAGS} -o build/${BINARY}
runui:
cd build && ./gime ui
clean:
rm build/*