fix2
This commit is contained in:
parent
3dd22413c1
commit
76992abd67
1 changed files with 15 additions and 8 deletions
|
|
@ -1,7 +1,7 @@
|
|||
# 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)
|
||||
|
|
@ -16,15 +16,22 @@ distro=windows
|
|||
image=registry.gitlab.com/librewolf-community/browser/bsys5/$(distro):latest
|
||||
|
||||
docker :
|
||||
|
||||
docker build -t $(image) - < assets/windows.Dockerfile
|
||||
|
||||
build :
|
||||
|
||||
pwd
|
||||
ls -a
|
||||
make fetch
|
||||
make all
|
||||
cp -v $(outfiles) /
|
||||
( cd / && sha256sum $(outfile-exe) > $(outfile-exe).sha256sum )
|
||||
cat /$(outfile-exe).sha256sum
|
||||
( cd / && sha256sum $(outfile-zip) > $(outfile-zip).sha256sum )
|
||||
git clone https://gitlab.com/librewolf-community/browser/windows.git
|
||||
${MAKE} -C windows/linux do-build
|
||||
sha256sum $(outfile-exe) > $(outfile-exe).sha256sum
|
||||
cat $(outfile-exe).sha256sum
|
||||
sha256sum $(outfile-zip) > $(outfile-zip).sha256sum
|
||||
cat /$(outfile-zip).sha256sum
|
||||
|
||||
do-build :
|
||||
|
||||
pwd
|
||||
${MAKE} fetch
|
||||
${MAKE} all
|
||||
cp -v $(outfiles) ../..
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue