File: Makefile.am

package info (click to toggle)
memcached 1.6.41-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,232 kB
  • sloc: ansic: 61,198; perl: 12,716; sh: 5,049; makefile: 471; python: 402; xml: 59
file content (33 lines) | stat: -rw-r--r-- 837 bytes parent folder | download | duplicates (3)
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
man_MANS = memcached.1

SPECIFICATIONS = protocol-binary.txt protocol-binary-range.txt

EXTRA_DIST = $(srcdir)/*.txt

# When we make dist always include the generated specifications so people don't
# have to have xml2rfc and xsltproc installed
EXTRA_DIST += $(SPECIFICATIONS)

BUILT_SOURCES =
MOSTLYCLEANFILES =
#if BUILD_SPECIFICATIONS
#BUILT_SOURCES    += $(SPECIFICATIONS)
#MOSTLYCLEANFILES += $(SPECIFICATIONS)
#endif

#RFC2629_XSL = $(srcdir)/xml2rfc/rfc2629-noinc.xsl
#RFC2629_DTD = $(srcdir)/xml2rfc/rfc2629.dtd

#%.txt: %.full $(RFC2629_DTD)
#	@XML2RFC@ -d $(RFC2629_DTD) -c $(builddir) $< $@
#
#%.full: %.xml $(RFC2629_XSL)
#	@XSLTPROC@ --nonet $(RFC2629_XSL) $< > $@

# Prevent make from deleting intermediate files
#all-full: $(SPECIFICATIONS:.txt=.full)

#clean-local:
#	rm -f $(SPECIFICATIONS:.txt=.full)

#.PHONY: all-full