Skip to content

Commit

Permalink
Makefile: Update for cmd/inc
Browse files Browse the repository at this point in the history
Signed-off-by: Stéphane Graber <[email protected]>
  • Loading branch information
stgraber committed Aug 5, 2023
1 parent 035357c commit d67d0d5
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 @@ -37,7 +37,7 @@ endif

.PHONY: client
client:
go install -v -tags "$(TAG_SQLITE3)" $(DEBUG) ./inc
go install -v -tags "$(TAG_SQLITE3)" $(DEBUG) ./cmd/inc
@echo "Incus client built successfully"

.PHONY: incus-agent
Expand Down Expand Up @@ -245,7 +245,7 @@ update-pot:
ifeq "$(INCUS_OFFLINE)" ""
(cd / ; go install -v -x github.com/snapcore/snapd/i18n/[email protected])
endif
xgettext-go -o po/$(DOMAIN).pot --add-comments-tag=TRANSLATORS: --sort-output --package-name=$(DOMAIN) [email protected] --keyword=i18n.G --keyword-plural=i18n.NG inc/*.go inc/*/*.go
xgettext-go -o po/$(DOMAIN).pot --add-comments-tag=TRANSLATORS: --sort-output --package-name=$(DOMAIN) [email protected] --keyword=i18n.G --keyword-plural=i18n.NG cmd/inc/*.go cmd/inc/*/*.go

.PHONY: build-mo
build-mo: $(MOFILES)
Expand Down Expand Up @@ -273,5 +273,5 @@ endif
run-parts --exit-on-error --regex '.sh' test/lint

.PHONY: tags
tags: *.go incus/*.go shared/*.go inc/*.go
tags: *.go incus/*.go shared/*.go cmd/inc/*.go
find . -type f -name '*.go' | xargs gotags > tags

0 comments on commit d67d0d5

Please sign in to comment.