From 532cedb4dfaee23bbddffa70801f6abf604bd436 Mon Sep 17 00:00:00 2001 From: Stefano Zacchiroli Date: Thu, 5 May 2005 15:54:53 +0000 Subject: [PATCH] added "tags" target to generate vim tags with otags --- helm/ocaml/Makefile.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/helm/ocaml/Makefile.in b/helm/ocaml/Makefile.in index e07de2783..a09775cce 100644 --- a/helm/ocaml/Makefile.in +++ b/helm/ocaml/Makefile.in @@ -80,9 +80,14 @@ METAS/META.helm-%: METAS/meta.helm-%.src for i in $(MODULES); do echo "\"helm-$$i\" [shape=box,style=filled,fillcolor=yellow];" >> $@ ; done echo "}" >> $@ - libraries.ps: .dep.dot dot -Tps -o $@ $< libraries-complete.ps: .alldep.dot dot -Tps -o $@ $< + +tags: TAGS +.PHONY: TAGS +TAGS: + otags -vi -r . + -- 2.39.2