Sun Feb 5 01:01:07 PM CET 2023
This commit is contained in:
parent
c6c9928ccc
commit
902e758ed1
1 changed files with 6 additions and 2 deletions
|
|
@ -1,6 +1,7 @@
|
|||
# windows.mk - build windows docker image and do build phase
|
||||
# windows.mk - this one is quite a bit different from the others,
|
||||
# but we can fix that later.
|
||||
|
||||
.PHONY : docker build
|
||||
.PHONY : docker build do-build
|
||||
|
||||
version:=$(shell cat version)
|
||||
release:=$(shell cat release)
|
||||
|
|
@ -18,6 +19,9 @@ docker :
|
|||
docker build -t $(image) - < assets/windows.Dockerfile
|
||||
|
||||
build :
|
||||
${MAKE} -C /root/windows/linux do-build
|
||||
|
||||
do-build :
|
||||
pwd
|
||||
(cd /root/windows && git pull)
|
||||
make fetch
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue