Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

Commit b57ebc5

Browse files
committed
Adding basic make
1 parent cc3617e commit b57ebc5

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

Diff for: .gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.tmp
2+
.DS_Store
3+
.build
4+
*.swp
5+
release-tools

Diff for: Makefile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Copyright 2020 The Kubernetes Authors.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
#CMDS=cosi-controller-manager
16+
all: genapi unit build
17+
#.PHONY: reltools
18+
#reltools: release-tools/build.make
19+
#release-tools/build.make:
20+
# $(eval CURDIR := $(shell pwd))
21+
# $(eval TMP := $(shell mktemp -d))
22+
# $(shell cd ${TMP} && git clone [email protected]:kubernetes-sigs/container-object-storage-interface-spec.git)
23+
# $(shell cp -r ${TMP}/container-object-storage-interface-spec/release-tools ${CURDIR}/)
24+
# $(shell rm -rf ${TMP})
25+
26+
unit:
27+
genapi:
28+
# $(shell ./hack/update-codegen.sh)
29+
30+
#include release-tools/build.make

0 commit comments

Comments
 (0)