Update parser Makefile (#501)

### Description

* Remove unused Makefile target
* Put executable files in a `bin/` directory
This commit is contained in:
agodnic 2023-07-04 17:48:47 -03:00 committed by GitHub
parent 8ad4d6276f
commit 88089a6a0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 12 deletions

2
parser/.gitignore vendored
View File

@ -1,2 +1,2 @@
.env
parser-app
bin/*

View File

@ -1,19 +1,9 @@
SHELL := /bin/bash
## help: print this help message
.PHONY: help
help:
@echo 'Usage:'
@sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /'
build:
go build -o parser-app cmd/main.go
go build -o bin/service cmd/main.go
doc:
swag init -pd
test:
go test -v -cover ./...

0
parser/bin/.gitkeep Normal file
View File