added buildsymbols target to resolve issue windows#217
This commit is contained in:
parent
8da4524d85
commit
5111065312
1 changed files with 5 additions and 2 deletions
|
|
@ -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)' && \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue