Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
87377f87
Commit
87377f87
authored
Apr 03, 2018
by
Tim Hockin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reorder makefile sections
parent
57d60ece
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
104 additions
and
104 deletions
+104
-104
Makefile.generated_files
build/root/Makefile.generated_files
+104
-104
No files found.
build/root/Makefile.generated_files
View file @
87377f87
...
...
@@ -487,110 +487,6 @@ $(DEFAULTER_GEN):
touch
$@
#
# Open-api generation
#
# Any package that wants open-api functions generated must include a
# comment-tag in column 0 of one file of the form:
# // +k8s:openapi-gen=true
#
# The result file, in each pkg, of open-api generation.
OPENAPI_BASENAME
:=
$(GENERATED_FILE_PREFIX)
openapi
OPENAPI_FILENAME
:=
$(OPENAPI_BASENAME)
.go
OPENAPI_OUTPUT_PKG
:=
pkg/generated/openapi
# The tool used to generate open apis.
OPENAPI_GEN
:=
$(BIN_DIR)
/openapi-gen
# Find all the directories that request open-api generation.
ifeq
($(DBG_MAKEFILE),1)
$(warning ***** finding all +k8s
:
openapi-gen tags)
endif
OPENAPI_DIRS
:=
$(
shell
\
grep
--color
=
never
-l
'+k8s:openapi-gen='
$(ALL_K8S_TAG_FILES)
\
| xargs
-n1
dirname
\
|
LC_ALL
=
C
sort
-u
\
)
OPENAPI_OUTFILE
:=
$(OPENAPI_OUTPUT_PKG)
/
$(OPENAPI_FILENAME)
# This rule is the user-friendly entrypoint for openapi generation.
.PHONY
:
gen_openapi
gen_openapi
:
$(OPENAPI_OUTFILE) $(OPENAPI_GEN)
# For each dir in OPENAPI_DIRS, this establishes a dependency between the
# output file and the input files that should trigger a rebuild.
#
# Note that this is a deps-only statement, not a full rule (see below). This
# has to be done in a distinct step because wildcards don't work in static
# pattern rules.
#
# The '$(eval)' is needed because this has a different RHS for each LHS, and
# would otherwise produce results that make can't parse.
#
# We depend on the $(GOFILES_META).stamp to detect when the set of input files
# has changed. This allows us to detect deleted input files.
$(foreach
dir,
$(OPENAPI_DIRS),
$(eval
\
$(OPENAPI_OUTFILE)
:
$(META_DIR)/$(dir)/$(GOFILES_META).stamp
\
$(gofiles__$(dir))
\
))
# How to regenerate open-api code. This emits a single file for all results.
$(OPENAPI_OUTFILE)
:
$(OPENAPI_GEN) $(OPENAPI_GEN)
function
run_gen_openapi
()
{
\
./hack/run-in-gopath.sh
$(OPENAPI_GEN)
\
--v
$(KUBE_VERBOSE)
\
--logtostderr
\
-i
$$
(
echo
$
(
addprefix
$(PRJ_SRC_PATH)
/,
$(OPENAPI_DIRS)
)
|
sed
's/ /,/g'
)
\
-p
$(PRJ_SRC_PATH)
/
$(OPENAPI_OUTPUT_PKG)
\
-O
$(OPENAPI_BASENAME)
\
"
$$
@"
;
\
}
;
\
run_gen_openapi
# This calculates the dependencies for the generator tool, so we only rebuild
# it when needed. It is PHONY so that it always runs, but it only updates the
# file if the contents have actually changed. We 'sinclude' this later.
.PHONY
:
$(META_DIR)/$(OPENAPI_GEN).mk
$(META_DIR)/$(OPENAPI_GEN).mk
:
mkdir
-p
$
(
@D
)
;
\
(
echo
-n
"
$(OPENAPI_GEN)
: "
;
\
./hack/run-in-gopath.sh go list
\
-f
'{{.ImportPath}}{{"\n"}}{{range .Deps}}{{.}}{{"\n"}}{{end}}'
\
./vendor/k8s.io/code-generator/cmd/openapi-gen
\
|
grep
--color
=
never
"^
$(PRJ_SRC_PATH)
/"
\
| xargs ./hack/run-in-gopath.sh go list
\
-f
'{{$$d := .Dir}}{{$$d}}{{"\n"}}{{range .GoFiles}}{{$$d}}/{{.}}{{"\n"}}{{end}}'
\
|
paste
-sd
' '
-
\
|
sed
's/ / \\=,/g'
\
|
tr
'=,'
'\n\t'
\
|
sed
"s|
$$
(pwd -P)/||"
;
\
)
>
$@
.tmp
;
\
if
!
cmp
-s
$@
.tmp
$@
;
then
\
if
[[
"
$(DBG_CODEGEN)
"
==
1
]]
;
then
\
echo
"DBG:
$(OPENAPI_GEN)
.mk changed"
;
\
fi
;
\
cat
$@
.tmp
>
$@
;
\
rm
-f
$@
.tmp
;
\
fi
# Include dependency info for the generator tool. This will cause the rule of
# the same name to be considered and if it is updated, make will restart.
sinclude
$(META_DIR)/$(OPENAPI_GEN).mk
# How to build the generator tool. The deps for this are defined in
# the $(OPENAPI_GEN).mk, above.
#
# A word on the need to touch: This rule might trigger if, for example, a
# non-Go file was added or deleted from a directory on which this depends.
# This target needs to be reconsidered, but Go realizes it doesn't actually
# have to be rebuilt. In that case, make will forever see the dependency as
# newer than the binary, and try to rebuild it over and over. So we touch it,
# and make is happy.
$(OPENAPI_GEN)
:
hack/make-rules/build.sh ./vendor/k8s.io/code-generator/cmd/openapi-gen
touch
$@
#
# Conversion generation
#
# Any package that wants conversion functions generated must include one or
...
...
@@ -805,3 +701,107 @@ sinclude $(META_DIR)/$(CONVERSION_GEN).mk
$(CONVERSION_GEN)
:
hack/make-rules/build.sh ./vendor/k8s.io/code-generator/cmd/conversion-gen
touch
$@
#
# Open-api generation
#
# Any package that wants open-api functions generated must include a
# comment-tag in column 0 of one file of the form:
# // +k8s:openapi-gen=true
#
# The result file, in each pkg, of open-api generation.
OPENAPI_BASENAME
:=
$(GENERATED_FILE_PREFIX)
openapi
OPENAPI_FILENAME
:=
$(OPENAPI_BASENAME)
.go
OPENAPI_OUTPUT_PKG
:=
pkg/generated/openapi
# The tool used to generate open apis.
OPENAPI_GEN
:=
$(BIN_DIR)
/openapi-gen
# Find all the directories that request open-api generation.
ifeq
($(DBG_MAKEFILE),1)
$(warning ***** finding all +k8s
:
openapi-gen tags)
endif
OPENAPI_DIRS
:=
$(
shell
\
grep
--color
=
never
-l
'+k8s:openapi-gen='
$(ALL_K8S_TAG_FILES)
\
| xargs
-n1
dirname
\
|
LC_ALL
=
C
sort
-u
\
)
OPENAPI_OUTFILE
:=
$(OPENAPI_OUTPUT_PKG)
/
$(OPENAPI_FILENAME)
# This rule is the user-friendly entrypoint for openapi generation.
.PHONY
:
gen_openapi
gen_openapi
:
$(OPENAPI_OUTFILE) $(OPENAPI_GEN)
# For each dir in OPENAPI_DIRS, this establishes a dependency between the
# output file and the input files that should trigger a rebuild.
#
# Note that this is a deps-only statement, not a full rule (see below). This
# has to be done in a distinct step because wildcards don't work in static
# pattern rules.
#
# The '$(eval)' is needed because this has a different RHS for each LHS, and
# would otherwise produce results that make can't parse.
#
# We depend on the $(GOFILES_META).stamp to detect when the set of input files
# has changed. This allows us to detect deleted input files.
$(foreach
dir,
$(OPENAPI_DIRS),
$(eval
\
$(OPENAPI_OUTFILE)
:
$(META_DIR)/$(dir)/$(GOFILES_META).stamp
\
$(gofiles__$(dir))
\
))
# How to regenerate open-api code. This emits a single file for all results.
$(OPENAPI_OUTFILE)
:
$(OPENAPI_GEN) $(OPENAPI_GEN)
function
run_gen_openapi
()
{
\
./hack/run-in-gopath.sh
$(OPENAPI_GEN)
\
--v
$(KUBE_VERBOSE)
\
--logtostderr
\
-i
$$
(
echo
$
(
addprefix
$(PRJ_SRC_PATH)
/,
$(OPENAPI_DIRS)
)
|
sed
's/ /,/g'
)
\
-p
$(PRJ_SRC_PATH)
/
$(OPENAPI_OUTPUT_PKG)
\
-O
$(OPENAPI_BASENAME)
\
"
$$
@"
;
\
}
;
\
run_gen_openapi
# This calculates the dependencies for the generator tool, so we only rebuild
# it when needed. It is PHONY so that it always runs, but it only updates the
# file if the contents have actually changed. We 'sinclude' this later.
.PHONY
:
$(META_DIR)/$(OPENAPI_GEN).mk
$(META_DIR)/$(OPENAPI_GEN).mk
:
mkdir
-p
$
(
@D
)
;
\
(
echo
-n
"
$(OPENAPI_GEN)
: "
;
\
./hack/run-in-gopath.sh go list
\
-f
'{{.ImportPath}}{{"\n"}}{{range .Deps}}{{.}}{{"\n"}}{{end}}'
\
./vendor/k8s.io/code-generator/cmd/openapi-gen
\
|
grep
--color
=
never
"^
$(PRJ_SRC_PATH)
/"
\
| xargs ./hack/run-in-gopath.sh go list
\
-f
'{{$$d := .Dir}}{{$$d}}{{"\n"}}{{range .GoFiles}}{{$$d}}/{{.}}{{"\n"}}{{end}}'
\
|
paste
-sd
' '
-
\
|
sed
's/ / \\=,/g'
\
|
tr
'=,'
'\n\t'
\
|
sed
"s|
$$
(pwd -P)/||"
;
\
)
>
$@
.tmp
;
\
if
!
cmp
-s
$@
.tmp
$@
;
then
\
if
[[
"
$(DBG_CODEGEN)
"
==
1
]]
;
then
\
echo
"DBG:
$(OPENAPI_GEN)
.mk changed"
;
\
fi
;
\
cat
$@
.tmp
>
$@
;
\
rm
-f
$@
.tmp
;
\
fi
# Include dependency info for the generator tool. This will cause the rule of
# the same name to be considered and if it is updated, make will restart.
sinclude
$(META_DIR)/$(OPENAPI_GEN).mk
# How to build the generator tool. The deps for this are defined in
# the $(OPENAPI_GEN).mk, above.
#
# A word on the need to touch: This rule might trigger if, for example, a
# non-Go file was added or deleted from a directory on which this depends.
# This target needs to be reconsidered, but Go realizes it doesn't actually
# have to be rebuilt. In that case, make will forever see the dependency as
# newer than the binary, and try to rebuild it over and over. So we touch it,
# and make is happy.
$(OPENAPI_GEN)
:
hack/make-rules/build.sh ./vendor/k8s.io/code-generator/cmd/openapi-gen
touch
$@
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment