File: Makefile.am

package info (click to toggle)
whitedb 0.7.3%2Bgit211004-1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 3,340 kB
  • sloc: ansic: 33,250; javascript: 3,299; python: 790; lex: 359; java: 277; makefile: 198; sh: 164; yacc: 138; sed: 41
file content (38 lines) | stat: -rw-r--r-- 698 bytes parent folder | download | duplicates (7)
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
34
35
36
37
38
# $Id:  $
# $Source:  $
#
# Compile test program(s)


# ---- options ----

# ---- targets ----

noinst_PROGRAMS = demo query
#if RAPTOR
#noinst_PROGRAMS += raptortry
#endif

# ---- extra dependencies, flags, etc -----

LIBDEPS = -lm   # dependency from libm round() should be removed
if RAPTOR
LIBDEPS += `$(RAPTOR_CONFIG) --libs`
endif

#if RAPTOR
#raptortry_CFLAGS = $(AM_CFLAGS) `$(RAPTOR_CONFIG) --cflags`
#endif

AM_LDFLAGS = $(LIBDEPS)

# ----- all sources for the created programs -----

#raptortry_SOURCES = raptortry.c
#raptortry_LDADD = ../Main/libwgdb.la

demo_SOURCES = demo.c
demo_LDADD = ../Main/libwgdb.la

query_SOURCES = query.c
query_LDADD = ../Main/libwgdb.la ../Test/libTest.la