added buildsymbols target to resolve issue windows#217

This commit is contained in:
Bert van der Weerd 2023-02-13 10:40:46 +01:00
parent 8da4524d85
commit 5111065312
No known key found for this signature in database
GPG key ID: 73370A0B9E5516B0

View file

@ -1,4 +1,4 @@
.PHONY : help fetch all clean build artifacts dir bootstrap winsdk setup-debian setup-fedora veryclean docker-build docker-run docker-clean docker-prune docker-shell
.PHONY : help fetch all clean build artifacts dir bootstrap winsdk setup-debian setup-fedora veryclean docker-build docker-run docker-clean docker-prune docker-shell buildsymbols
version:=$(shell cat version)
release:=$(shell cat release)
@ -32,7 +32,7 @@ help :
@echo " docker-prune - Delete ALL docker data: images, containers, networks, etc."
@echo ""
all : build package artifacts
all : build buildsymbols package artifacts
fetch :
wget -q -O version "https://gitlab.com/librewolf-community/browser/source/-/raw/main/version"
@ -53,6 +53,9 @@ veryclean : clean
build : dir
(cd librewolf-$(full_version) && ./mach build)
buildsymbols : dir
(cd librewolf-$(full_version) && ./mach buildsymbols)
package : dir
# (cd librewolf-$(full_version) && ./mach package)
( cd librewolf-$(full_version) && echo 'Packaging... (output hidden)' && \