summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-08-28 12:01:27 -0700
committerVincent Sanders <vince@kyllikki.org>2014-08-28 12:02:49 -0700
commit67e26b0b6bdf7866c97653646a8988de4b53a494 (patch)
treecd3c951eea5abb5d583ba51a2f30a25c195b62a5 /Makefile
parent7eeab3949653c58427c1f56907b986fdca2eab2f (diff)
downloadnetsurf-all-67e26b0b6bdf7866c97653646a8988de4b53a494.tar.gz
netsurf-all-67e26b0b6bdf7866c97653646a8988de4b53a494.tar.bz2
fix makefile helper targets to actually update libnsfb on release
update libnsfb submodule for 3.2 release
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 356f8f1..627578a 100644
--- a/Makefile
+++ b/Makefile
@@ -112,11 +112,11 @@ clean:
$(foreach L,$(NSHOST_TARG),$(call do_host_clean,$(L)))
$(MAKE) clean --directory=$(NETSURF_TARG) TARGET=$(TARGET)
-release-checkout: $(NSLIB_TARG) $(NETSURF_TARG) $(NSGENBIND_TARG) $(NSLIB_RO_TARG)
+release-checkout: $(NSLIB_TARG) $(NETSURF_TARG) $(NSGENBIND_TARG) $(NSLIB_FB_TARG) $(NSLIB_SVGTINY_TARG) $(NSLIB_RO_TARG)
git pull --recurse-submodules
for x in $^; do cd $$x; (git checkout origin/HEAD && git checkout $$(git describe --abbrev=0 --match="release/*" )); cd ..; done
-head-checkout: $(NSLIB_TARG) $(NETSURF_TARG) $(NSGENBIND_TARG) $(NSLIB_RO_TARG)
+head-checkout: $(NSLIB_TARG) $(NETSURF_TARG) $(NSGENBIND_TARG) $(NSLIB_FB_TARG) $(NSLIB_SVGTINY_TARG) $(NSLIB_RO_TARG)
git pull --recurse-submodules
for x in $^; do cd $$x; git checkout origin/HEAD ; cd ..; done