]> git.mxchange.org Git - simgear.git/blob - simgear/Makefile.am
Add optional attribute condition to "copyProperties".
[simgear.git] / simgear / Makefile.am
1 if ENABLE_HLA
2 HLA_DIR = hla
3 else
4 HLA_DIR =
5 endif
6
7 EXTRA_DIST = simgear_config.h.vc5 simgear_config.h-msvc71 version.h.in
8
9 include_HEADERS = \
10         compiler.h constants.h sg_inlines.h version.h
11
12 if WANT_HEADLESS
13 SG_EXTRA_DIRS =
14 METAR_DIRS = 
15 else
16 SG_EXTRA_DIRS = scene sound screen
17 METAR_DIRS = environment
18 endif
19
20 if HAVE_THREADS
21 SGTHREAD_DIR = threads
22 else
23 SGTHREAD_DIR = 
24 endif
25
26 SUBDIRS_ALWAYS = \
27         xml \
28         debug \
29         misc \
30         structure \
31         bucket \
32         ephemeris \
33         $(HLA_DIR) \
34         io \
35         magvar \
36         math \
37         nasal \
38         props \
39         route \
40         serial \
41         timing
42
43 SUBDIRS = $(SUBDIRS_ALWAYS) \
44         $(compatibility_DIR) \
45         $(METAR_DIRS) \
46         $(SG_EXTRA_DIRS) \
47         $(SGTHREAD_DIR)
48
49 DIST_SUBDIRS = $(SUBDIRS_ALWAYS) compatibility scene sound screen environment threads
50