From 877f9ae2ef33df7c3d8639a90be55556e1be1b86 Mon Sep 17 00:00:00 2001 From: Matthew Rich Date: Thu, 4 Apr 2024 10:44:07 -0700 Subject: [PATCH] add makefile --- Makefile | 7 +++++++ README.md | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f2fa516 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +LDFLAGS?=--ldflags '-extldflags "-static"' +export CGO_ENABLED=0 + +build: + +test: + go test ./... diff --git a/README.md b/README.md index 4f37a64..46a8a83 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # machine -State machine library \ No newline at end of file +State machine library