From 26ec677a2bee8344675eb3b4afc24b3ae85f512a Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Thu, 14 May 2026 11:17:55 -0400 Subject: cli: validate interior --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7914f12..c254292 100644 --- a/Makefile +++ b/Makefile @@ -2,16 +2,19 @@ GEN = $(addsuffix _gen.go, cover interior pkgid ship status) TEST = $(wildcard *_test.go) SRC = $(filter-out ${GEN} ${TEST}, $(wildcard *.go)) +all: build lulu + build: ${SRC} ${GEN} go build ${GEN}: ${SRC} go generate +lulu: ${SRC} $(wildcard cmd/lulu/*.go) + go build ./cmd/$@ + spec.yml: curl -L -o $@ 'https://api.lulu.com/api-docs/openapi-specs/openapi_public.yml' clean: - rm -f ${GEN} - -.PHONY: build clean + rm -f ${GEN} ${BIN} -- cgit v1.2.3