File: Makefile.in

package info (click to toggle)
rplay 3.3.2-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 3,208 kB
  • ctags: 3,536
  • sloc: ansic: 42,124; makefile: 1,309; perl: 742; tcl: 345; sh: 301; java: 220
file content (85 lines) | stat: -rw-r--r-- 1,951 bytes parent folder | download | duplicates (9)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
include @RPLAY_TOP@/Makefile.config

srcdir = @srcdir@
VPATH = @srcdir@

INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
MKINSTALLDIRS= @srcdir@/../mkinstalldirs

.SUFFIXES:
.SUFFIXES: .texi .info .dvi .ps .html

.texi.info:
	$(MAKEINFO) $(MAKEINFO_FLAGS) $<

.texi.dvi:
	$(TEXI2DVI) $(TEXI2DVI_FLAGS) $<

.dvi.ps:
	$(DVIPS) $< -o 

.texi.html:
	$(TEXI2HTML) $(TEXI2HTML_FLAGS) $<

all:

info: RPLAY.info RPTP.info librplay.info rplay.info

dvi: RPLAY.dvi RPTP.dvi librplay.dvi rplay.dvi

ps: RPLAY.ps RPTP.ps librplay.ps rplay.ps

html: RPLAY.html RPTP.html librplay.html rplay.html

man:
	./genman rplay.1.in
	./genman rptp.1.in
	./genman rplayd.8.in

install: all
	-$(MKINSTALLDIRS) $(mandir)/man1 $(mandir)/man5 $(mandir)/man8 $(infodir)
	-$(INSTALL_DATA) rplay.1 $(mandir)/man1
	-$(INSTALL_DATA) rplayd.8 $(mandir)/man8
	-$(INSTALL_DATA) rptp.1 $(mandir)/man1
	-$(INSTALL_DATA) rplay.conf.5 $(mandir)/man5
	-$(INSTALL_DATA) rplay.helpers.5 $(mandir)/man5
	-$(INSTALL_DATA) rplay.hosts.5 $(mandir)/man5
	-$(INSTALL_DATA) rplay.servers.5 $(mandir)/man5
	-$(INSTALL_DATA) RPLAY.info $(infodir)/RPLAY.info
	-$(INSTALL_DATA) RPTP.info $(infodir)/RPTP.info
	-$(INSTALL_DATA) librplay.info $(infodir)/librplay.info
	-$(INSTALL_DATA) rplay.info $(infodir)/rplay.info

uninstall:
	-$(RM) $(mandir)/man1/rplay.1
	-$(RM) $(mandir)/man8/rplayd.8
	-$(RM) $(mandir)/man1/rptp.1
	-$(RM) $(mandir)/man5/rplay.conf.5
	-$(RM) $(mandir)/man5/rplay.helpers.5
	-$(RM) $(mandir)/man5/rplay.hosts.5
	-$(RM) $(mandir)/man5/rplay.servers.5
	-$(RM) $(infodir)/RPLAY.info
	-$(RM) $(infodir)/RPTP.info
	-$(RM) $(infodir)/librplay.info
	-$(RM) $(infodir)/rplay.info

clean:
	$(RM) *~ *.bak *.orig
	$(RM) *.aux *.cp *.cps *.fn *.fns *.ky *.kys *.log
	$(RM) *.pg *.pgs *.toc *.tp *.tps *.vr *.vrs
	$(RM) *.ev *.evs *.ov *.ovs *.cv *.cvs *.ma *.mas

distclean:	clean
	$(RM) Makefile
	$(RM) *.html *.dvi *.ps

tags:

TAGS:

etags:

depend: