]> git.mxchange.org Git - simgear.git/blob - simgear/Makefile.am
Merge branch 'next' of git.gitorious.org:fg/simgear into next
[simgear.git] / simgear / Makefile.am
1 if ENABLE_HLA
2 HLA_DIR = hla
3 else
4 HLA_DIR =
5 endif
6
7 EXTRA_DIST = hla simgear_config.h-msvc90 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         $(SGTHREAD_DIR) \
35         io \
36         magvar \
37         math \
38         nasal \
39         props \
40         route \
41         serial \
42         timing
43
44 SUBDIRS = $(SUBDIRS_ALWAYS) \
45         $(compatibility_DIR) \
46         $(METAR_DIRS) \
47         $(SG_EXTRA_DIRS)
48
49 DIST_SUBDIRS = $(SUBDIRS_ALWAYS) compatibility scene sound screen environment threads
50