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) ../..