public
Description: This is where my memcached work lives before svn munges the changes.
Homepage: http://www.danga.com/memcached/
Clone URL: git://github.com/dustin/memcached.git
Cosimo Streppone (author)
Thu Jun 19 08:29:10 -0700 2008
dustin (committer)
Thu Jun 19 08:29:10 -0700 2008
memcached / Makefile.am
100644 21 lines (16 sloc) 0.563 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
bin_PROGRAMS = memcached memcached-debug
 
memcached_SOURCES = memcached.c slabs.c slabs.h items.c items.h assoc.c assoc.h memcached.h thread.c stats.c stats.h
memcached_debug_SOURCES = $(memcached_SOURCES)
memcached_CPPFLAGS = -DNDEBUG
memcached_LDADD = @LIBOBJS@
memcached_debug_LDADD = $(memcached_LDADD)
 
SUBDIRS = doc
DIST_DIRS = scripts
EXTRA_DIST = doc scripts TODO t memcached.spec
 
test:  memcached-debug
  prove $(srcdir)/t
 
dist-hook:
  rm -rf $(distdir)/doc/.svn/
  rm -rf $(distdir)/scripts/.svn/
  rm -rf $(distdir)/t/.svn/
  rm -rf $(distdir)/t/lib/.svn/