working commit

This commit is contained in:
2026-03-08 21:57:38 +02:00
parent 7cf9c4320e
commit 86ae312384
2 changed files with 92 additions and 160 deletions
+13 -7
View File
@@ -36,12 +36,11 @@ EXTRA_mstorectl_SOURCES = \
cmd/mstorectl/filecmd/listfiles.go \
cmd/mstorectl/filecmd/putfile.go \
cmd/mstorectl/imagecmd/imagecmd.go \
cmd/mstorectl/imagecmd/printresp.go \
cmd/mstorectl/main.go \
cmd/mstorectl/util.go
cmd/mstorectl/imagecmd/printresp.go
mstored_SOURCES = cmd/mstored/main.go \
cmd/mstored/starter/starter.go
mstored_SOURCES = cmd/mstored/main.go
EXTRA_mstored_SOURCES = cmd/mstored/starter/starter.go
mstorectl$(EXEEXT): $(mstorectl_SOURCES) $(EXTRA_mstorectl_SOURCES) $(EXTRA_mstored_SOURCES)
env CGO_ENABLED=0 $(GO) build $(GOFLAGS) -o mstorectl$(EXEEXT) $(mstorectl_SOURCES)
@@ -54,7 +53,7 @@ run: $(mstored_SOURCES)
CWD=$(shell pwd)
EXTRA_mstored_SOURCES = \
EXTRA_mstored_SOURCES += \
app/accoper/createacc.go \
app/accoper/creategrant.go \
app/accoper/delacc.go \
@@ -201,13 +200,19 @@ EXTRA_mstored_SOURCES = \
pkg/terms/terms.go
EXTRA_DIST = vendor/ \
EXTRA_DIST = vendor/* \
\
Containerfile \
go.mod \
go.sum \
LICENSE.txt \
README.md \
DEVEL.md \
\
test/attic/account_test.go \
test/attic/file_test.go \
test/attic/image_test.go \
test/file_test.go \
\
chart/Chart.yaml.in \
chart/.gitignore \
@@ -275,6 +280,7 @@ EXTRA_DIST = vendor/ \
format:
@dirs=$$($(FIND) $(CWD)/app $(CWD)/cmd $(CWD)/pkg $(CWD)/test \
-name '*.go' | $(XARGS) -n1 dirname | $(SORT) | $(UNIQ)); \