diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ all: build lulu build: ${SRC} ${GEN} go build -testcli: lulu cmd/lulu/test $(wildcard cmd/lulu/tests/*) $(wildcard cmd/lulu/testdata/*) +testcli: lulu $(eval PATH=$(shell pwd):${PATH}) cd cmd/lulu && ./test @@ -23,6 +23,6 @@ spec.yml: curl -L -o $@ 'https://api.lulu.com/api-docs/openapi-specs/openapi_public.yml' clean: - cat .gitignore | xargs -I{} sh -c "rm -rf ./{}" + rm -rf ${GEN} lulu .gen cmd/lulu/testerr cmd/lulu/testout .PHONY: testcli |