File: makefile

package info (click to toggle)
quelcom 0.4.0-12
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 1,068 kB
  • ctags: 542
  • sloc: cpp: 3,899; makefile: 193; sh: 15
file content (27 lines) | stat: -rw-r--r-- 547 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
27

all: quelcom.html quelcom.info quelcom.txt

quelcom.html: quelcom.texinfo
	makeinfo --force --html quelcom.texinfo

quelcom.info: quelcom.texinfo
	makeinfo --force quelcom.texinfo

quelcom.txt: quelcom.texinfo
	makeinfo --force --number-sections --no-headers -o quelcom.txt quelcom.texinfo

install: quelcom.info
	mkdir -p $(INFODIR)
	cp quelcom.info $(INFODIR)

clean:
	rm -f quelcom.{html,info,txt}

# installs the deprecated man pages
installman:
	mkdir -p $(MANDIR)/man1;
	for i in old.man.pages/*; \
	do \
	  cp $$i $(MANDIR)/man1; \
	done