File: Makefile.am

package info (click to toggle)
libdmtx 0.7.2-2%2Bbuild1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 3,676 kB
  • sloc: sh: 10,371; ansic: 10,144; cs: 596; makefile: 204; java: 161; objc: 157; python: 125; perl: 28; php: 18; ruby: 16
file content (23 lines) | stat: -rw-r--r-- 539 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
if ENABLE_PHP
   PHP_DIR = php
endif

if ENABLE_PYTHON
   PYTHON_DIR = python
endif

if ENABLE_RUBY
   RUBY_DIR = ruby
endif

if ENABLE_VALA
   VALA_DIR = vala
endif

# Only include directories that were enabled at ./configure time
SUBDIRS = $(PHP_DIR) $(PYTHON_DIR) $(RUBY_DIR) $(VALA_DIR)

# Force DIST_SUBDIRS equal to SUBDIRS. Otherwise "distclean" target will
# break in unconfigured directories. This is allowed because all wrapper
# directories (configured and unconfigured) are also listed in EXTRA_DIST.
DIST_SUBDIRS = $(SUBDIRS)