File: include.am

package info (click to toggle)
libmemcached 1.0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,912 kB
  • sloc: cpp: 39,309; ansic: 18,449; sh: 11,864; python: 603; yacc: 437; lex: 195; makefile: 116
file content (27 lines) | stat: -rw-r--r-- 678 bytes parent folder | download
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
# vim:ft=automake
# included from Top Level Makefile.am
# All paths should be given relative to the root

if HAVE_LIBEVENT
noinst_PROGRAMS += example/memcached_light
endif

noinst_HEADERS+= \
		 example/byteorder.h \
		 example/memcached_light.h \
		 example/storage.h

example_memcached_light_SOURCES= \
				 example/byteorder.cc \
				 example/interface_v0.cc \
				 example/interface_v1.cc \
				 example/memcached_light.cc \
				 util/daemon.cc \
				 util/pidfile.cc

example_memcached_light_LDADD= libmemcached/libmemcachedprotocol.la \
                               $(LIBEVENT_LDFLAGS)

example_memcached_light_SOURCES+= example/storage.cc

include example/t/include.am