File: Makefile.am

package info (click to toggle)
libtinymail 0.0.9-4
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 18,148 kB
  • ctags: 19,175
  • sloc: ansic: 151,565; xml: 20,145; sh: 9,245; makefile: 2,394; cs: 243; cpp: 141; python: 93; perl: 71
file content (33 lines) | stat: -rw-r--r-- 396 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
24
25
26
27
28
29
30
31
32
33
SUBDIRS = python-demo

if BUILD_DEMOUI
SUBDIRS += c-demo

if BUILD_VALA_BINDINGS
SUBDIRS += vala-demo
endif
endif

#### Funny OR simulation :)
if BUILD_TESTS
if !BUILD_UNITTESTS
SUBDIRS += shared
endif
endif

if BUILD_UNITTESTS
if !BUILD_TESTS
SUBDIRS += shared
endif
endif

if BUILD_UNITTESTS
if BUILD_TESTS
SUBDIRS += shared
endif
endif
### 

if BUILD_TESTS
SUBDIRS += memory functional 
endif