chore: makefile

This commit is contained in:
Richard Ramos 2024-05-09 16:33:15 -04:00
parent 4ce0b98106
commit cc9795f223
No known key found for this signature in database
GPG Key ID: 1CE87DB518195760
7 changed files with 17 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
storage.db
storage.db-shm
storage.db-wal
./storeverif

11
Makefile Normal file
View File

@ -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

2
build/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore