Skip to content

Commit

Permalink
deploy: 8e5b8f7
Browse files Browse the repository at this point in the history
  • Loading branch information
flammie committed Mar 27, 2024
1 parent 352ebc7 commit 31438a5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@ regenerate-markdown: generate-markdown

# Generate endpoint json file for shield.io lemma count badge.
# Only to be stored in the gh-pages branch, ignored in main.
$(srcdir)/lemmacount.json: $(top_srcdir)/src/fst/morphology/stems/*.lexc
$(srcdir)/lemmacount.json:
$(AM_V_GEN)$(GTCORE)/scripts/make-lemmacount.json.sh $(abs_top_srcdir) > $@

# Generate a maturity.json file as endpoint for the maturity badge.
Expand Down Expand Up @@ -994,6 +994,7 @@ $(LINKS):
d2=`echo "$$d" | cut -d '/' -f 2` ;\
d3=`echo "$$d" | cut -d '/' -f 3` ;\
d4=`echo "$$d" | cut -d '/' -f 4` ;\
d5=`echo "$$d" | cut -d '/' -f 5` ;\
if test "x$$d1" != "x$$oldd1" ; then \
echo "* \`$$d1/\`" ;\
oldd1=$$d1 ;\
Expand All @@ -1016,6 +1017,12 @@ $(LINKS):
echo " * \`$$d4/\`" ;\
oldd4=$$d4 ;\
fi ; \
if test "x$$d5" = x -a "x$$d4" != x ; then \
echo " * [$$docname]($$html) ([src]($(REPOURL)/$$doc))" ;\
elif test "x$$d5" != "x$$oldd5" ; then \
echo " * \`$$d5/\`" ;\
oldd5=$$d5 ;\
fi ; \
done > $@

empty.md:
Expand Down

0 comments on commit 31438a5

Please sign in to comment.