From c62860eb6fd1c7a53635352b487e50312a69221b Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Tue, 7 Feb 2023 12:51:56 +0100 Subject: [PATCH] Tue Feb 7 12:51:56 PM CET 2023 --- assets/windows.mk | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/assets/windows.mk b/assets/windows.mk index dd0e9f7..f0f6ad4 100644 --- a/assets/windows.mk +++ b/assets/windows.mk @@ -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 do-build +.PHONY : docker build version:=$(shell cat version) release:=$(shell cat release) @@ -24,15 +24,15 @@ build : pwd rm -rf windows git clone https://gitlab.com/librewolf-community/browser/windows.git - ${MAKE} -C windows/linux do-build + + ( cd windows/linux && \ + pwd && \ + ${MAKE} fetch && \ + ${MAKE} all && \ + cp -v $(outfiles) ../.. ) + sha256sum $(outfile-exe) > $(outfile-exe).sha256sum cat $(outfile-exe).sha256sum sha256sum $(outfile-zip) > $(outfile-zip).sha256sum cat /$(outfile-zip).sha256sum -do-build : - - pwd - ${MAKE} -f Makefile fetch - ${MAKE} -f Makefile all - cp -v $(outfiles) ../..