0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-31 10:03:58 -05:00
LibreWolf/assets/upstream.nighly.mk

15 lines
456 B
Makefile
Raw Normal View History

2022-01-08 15:57:39 -05:00
## handle different upstreams, like developer,nightly, or distro specific upstream cases
2022-01-08 16:07:06 -05:00
upstream_filename=mozilla-unified
upstream_dirname=mozilla-unified
2022-01-08 15:57:39 -05:00
$(upstream_filename) :
2022-01-08 16:07:06 -05:00
hg clone https://hg.mozilla.org/mozilla-unified
(cd mozilla-unified && hg update)
2022-01-08 15:57:39 -05:00
##
clean_upstream_file :
clean_upstream_dir :
create_lw_from_upstream_dir :
2022-01-08 16:07:06 -05:00
(cd mozilla-unified && hg pull)
(cd mozilla-unified && hg update)
cp -r $(upstream_dirname) librewolf-$(version)
2022-01-08 15:57:39 -05:00