Skip to content

Commit 3e3a2d4

Browse files
committed
added makefile
1 parent d31cf8b commit 3e3a2d4

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
.vscode/launch.json
44

5-
/testpkg/**/*
5+
/testpkg/**/*
6+
bin/**

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
build:
2+
go build -o bin/simser .
3+
4+
run: build
5+
go run bin/simser
6+
7+
test:
8+
go test -v ./... -count=1
9+
10+
clean:
11+
rm -r ./bin

0 commit comments

Comments
 (0)