chore: makefile
This commit is contained in:
parent
4ce0b98106
commit
cc9795f223
|
@ -0,0 +1,4 @@
|
|||
storage.db
|
||||
storage.db-shm
|
||||
storage.db-wal
|
||||
./storeverif
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
SHELL := bash # the shell used internally by Make
|
||||
|
||||
GOCMD ?= $(shell which go)
|
||||
|
||||
.PHONY: all build
|
||||
|
||||
all: build
|
||||
|
||||
build:
|
||||
${GOCMD} build -o build/storeverif ./cmd/storeverif
|
|
@ -0,0 +1,2 @@
|
|||
*
|
||||
!.gitignore
|
Loading…
Reference in New Issue