File: Makefile.in

package info (click to toggle)
man2html 1.6f%2Brepack-1%2Bsqueeze1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,416 kB
  • ctags: 2,894
  • sloc: ansic: 9,558; sh: 2,301; makefile: 343; perl: 335; awk: 305; lisp: 171; cs: 170
file content (61 lines) | stat: -rw-r--r-- 1,693 bytes parent folder | download | duplicates (7)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# only executed from a subdir
MAN1 = man whatis apropos
MAN5 = man.conf
MAN8 = makewhatis
ALL = man.1 whatis.1 apropos.1 man.conf.5
MAYBE8 = makewhatis

.SUFFIXES: .man .1 .5 .8

.man.1:
	@cp $< $@.in; ../../conf_script $@; rm $@.in

.man.5:
	@cp $< $@.in; ../../conf_script $@; rm $@.in

.man.8:
	@cp $< $@.in; ../../conf_script $@; rm $@.in

INSTALL = @INSTALL@ -c -m 644

# Where to put the manual pages.
mandir = $(DESTDIR)$(PREFIX)@mandir@$(SLANG)

all:	$(ALL)
	for i in $(MAYBE8); \
		do if test -f $$i.man; then make -f ../Makefile $$i.8; fi; done

install: $(ALL)
	mkdir -p $(mandir)/man1 $(mandir)/man5 $(mandir)/man8
	for i in $(MAN1); \
		do $(INSTALL) $$i.1 $(mandir)/man1/$$i.@man1ext@; done
	for i in $(MAN5); \
		do $(INSTALL) $$i.5 $(mandir)/man5/$$i.@man5ext@; done
	for i in $(MAN8); \
		do if test -f $$i.8; then $(INSTALL) $$i.8 $(mandir)/man8/$$i.@man8ext@; fi; done

clean:
	rm -f core *.in *.@man1ext@ *.@man5ext@ *.@man8ext@ *~

spotless:

subdirs:
	@for i in @languages@; do if test -d $$i; then echo; \
		echo "==== Making the `cat $$i.txt` man pages. ===="; \
		cd $$i; make -f ../Makefile; cd ..; \
		else echo "==== No $$i man pages found. ===="; fi; done

installsubdirs:
	@for i in @languages@; do if test -d $$i; then echo; \
		echo "==== Installing the `cat $$i.txt` man pages. ===="; \
		cd $$i; SLANG=/$$i; if test $$SLANG = /en; then SLANG= ; fi; \
		export SLANG; make -f ../Makefile install; cd ..; \
		else echo "==== No $$i man pages found. ===="; fi; done

cleansubdirs:
	@for i in ??; do cd $$i; make -f ../Makefile clean; cd ..; done
	rm -f core *~

spotlesssubdirs:
	for i in ??; do cd $$i; make -f ../Makefile spotless; cd ..; done
	rm -f Makefile