File: Makefile.am

package info (click to toggle)
netperf 2.4.4-6.1
  • links: PTS
  • area: non-free
  • in suites: squeeze, wheezy
  • size: 4,980 kB
  • ctags: 2,492
  • sloc: ansic: 31,252; sh: 4,797; makefile: 60
file content (22 lines) | stat: -rw-r--r-- 953 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# what is your philosophy - distribute pre-made .pdf et al in a make dist
# or not?  choose your EXTRA_DIST line accordingly
# EXTRA_DIST = netperf.man netserver.man netperf.txt netperf.html netperf.xml netperf_old.ps netperf.pdf netperf.ps netperf.texi examples

SUBDIRS = examples

EXTRA_DIST = netperf.man netserver.man netperf_old.ps netperf.texi 
man1_MANS = netperf.man netserver.man
info_TEXINFOS = netperf.texi
CLEANFILES = netperf.txt netperf.xml netperf.html

netperf.html: $(info_TEXINFOS)
	$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) --html --no-split -I $(srcdir) \
         -o $@ `test -f '$<' || echo '$(srcdir)/'`$<

netperf.txt: $(info_TEXINFOS)
	$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) --plaintext -I $(srcdir) \
         -o $@ `test -f '$<' || echo '$(srcdir)/'`$<

netperf.xml: $(info_TEXINFOS)
	$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) --xml -I $(srcdir) \
         -o $@ `test -f '$<' || echo '$(srcdir)/'`$<