File: Makefile.am

package info (click to toggle)
libzdb 3.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,600 kB
  • sloc: javascript: 7,158; ansic: 6,413; sh: 3,993; cpp: 582; makefile: 114; xml: 59; lex: 35
file content (23 lines) | stat: -rw-r--r-- 537 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
AUTOMAKE_OPTIONS = foreign no-dependencies

DEFAULT_INCLUDES =
LDADD = ../libzdb.la
zdbpp_CXXFLAGS = -I../zdb
CFLAGS = -I../src -I../src/util -I../src/net -I../src/db -I../src/exceptions @CFLAGS@

noinst_PROGRAMS = unit pool select exception zdbpp
unit_SOURCES = unit.c
pool_SOURCES = pool.c
select_SOURCES = select.c
exception_SOURCES = exception.c
zdbpp_SOURCES = zdbpp.cpp

DISTCLEANFILES = *~

distclean-local: 
	-rm -f Makefile.in Makefile

test: unit pool select zdbpp

verify:
	@/bin/sh ./exception && ./unit && ./pool && ./zdbpp