Skip to content

Commit

Permalink
update: commands in Makefile to be the same as commands on workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
FomalhautWeisszwerg committed May 3, 2024
1 parent f5fcc66 commit 353ad49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ all: deps build test

.PHONY: deps
deps:
CGO_CFLAGS_ALLOW=-Xpreprocessor go get ./...
CGO_CFLAGS_ALLOW=-Xpreprocessor go get -v -t -d ./...

.PHONY: build
build:
CGO_CFLAGS_ALLOW=-Xpreprocessor go build ./vips
CGO_CFLAGS_ALLOW=-Xpreprocessor go build -v ./vips

.PHONY: test
test:
CGO_CFLAGS_ALLOW=-Xpreprocessor go test -v ./...
CGO_CFLAGS_ALLOW=-Xpreprocessor go test -v -coverprofile=profile.cov ./...

.PHONY: clean
clean:
Expand Down

0 comments on commit 353ad49

Please sign in to comment.