File: Makefile.am

package info (click to toggle)
libvformat 1.13-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 2,288 kB
  • sloc: sh: 6,645; ansic: 4,203; makefile: 38
file content (18 lines) | stat: -rw-r--r-- 652 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# No automatisation found. Write me if any idea.
info_TEXINFOS = libvformat.texi
libvformat_TEXINFOS = libvformat-1.texi libvformat-2.texi libvformat-i.texi

install-data-hook:
	$(mkinstalldirs) $(DESTDIR)$(mandir)/man3

	for i in *.3; do \
	  if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
	  else file=$$i; fi; \
	  ext=`echo $$i | sed -e 's/^.*\\.//'`; \
	  inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
	  inst=`echo $$inst | sed '$(transform)'`.$$ext; \
	  echo " $(INSTALL_DATA) $$file $(DESTDIR)$(mandir)/man3/$$inst"; \
	  $(INSTALL_DATA) $$file $(DESTDIR)$(mandir)/man3/$$inst; \
	done

	cp /usr/share/texmf/tex/texinfo/texinfo.tex .