Skip to content

Commit d297056

Browse files
committed
make: move ./mk to ./build/
1 parent d7d7e67 commit d297056

File tree

12 files changed

+8
-8
lines changed

12 files changed

+8
-8
lines changed

.github/workflows/publish-docker-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
paths:
77
- 'pkg/**'
88
- 'cmd/**'
9-
- 'mk/**'
9+
- 'build/**'
1010
- 'docker/docker_start.sh'
1111
- 'docker/config.yaml'
1212
- '.github/workflows/publish-docker-master.yml'

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
include mk/platform.mk
2-
include mk/gmsl
1+
include build/mk/platform.mk
2+
include build/mk/gmsl
33

44
# By default, this build requires the C++ re2 library to be installed.
55
#
@@ -399,4 +399,4 @@ else
399399
include test/bats.mk
400400
endif
401401

402-
include mk/help.mk
402+
include build/mk/help.mk
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

mk/platform.mk renamed to build/mk/platform.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ ifeq ($(OS), Windows_NT)
1010
EXT = .exe
1111
else
1212
SYSTEM ?= $(shell uname -s | tr '[A-Z]' '[a-z]')
13-
include mk/platform/unix_common.mk
13+
include build/mk/platform/unix_common.mk
1414
endif
1515

16-
ifneq ("$(wildcard mk/platform/$(SYSTEM).mk)", "")
17-
include mk/platform/$(SYSTEM).mk
16+
ifneq ("$(wildcard build/mk/platform/$(SYSTEM).mk)", "")
17+
include build/mk/platform/$(SYSTEM).mk
1818
else
19-
include mk/platform/linux.mk
19+
include build/mk/platform/linux.mk
2020
endif
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)