File: Makefile.am

package info (click to toggle)
libticables 1.3.6~git20240415.7c4858d%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,524 kB
  • sloc: cpp: 10,904; ansic: 1,609; sh: 171; makefile: 150; xml: 23; sed: 16
file content (27 lines) | stat: -rw-r--r-- 563 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
## Process this file with automake to produce Makefile.in

EXTRA_DIST = *.txt html
docdir = ${datadir}/doc/${PACKAGE}

all: docs

docs:
	tfdocgen ../

install:
	@INSTALL@ -d $(DESTDIR)${docdir}
	@INSTALL@ -d $(DESTDIR)${docdir}/html
	@INSTALL@ -m644 html/* $(DESTDIR)${docdir}/html
	@INSTALL@ -m644 ../AUTHORS ../ChangeLog ../COPYING ../README \
	$(DESTDIR)${docdir}

uninstall:
	rm -f $(DESTDIR)${docdir}/html/*

clean:
	rm -f html/*.c.html html/*.h.html html/api.html

files:
	@files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
	  echo $$p; \
	done