File: Makefile.am

package info (click to toggle)
libticalcs 1.1.9%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 2,356 kB
  • sloc: ansic: 27,186; makefile: 229; sh: 22; sed: 16
file content (26 lines) | stat: -rw-r--r-- 562 bytes parent folder | download | duplicates (6)
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
## 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