~ubuntu-branches/ubuntu/gutsy/lasso/gutsy

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2004-09-13 09:26:34 UTC
  • Revision ID: james.westby@ubuntu.com-20040913092634-01vdfl8j9cp94exa
Tags: upstream-0.4.1
ImportĀ upstreamĀ versionĀ 0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
if PYTHON_ENABLED
 
2
    PYTHON_SD = python
 
3
endif
 
4
if JAVA_ENABLED
 
5
    JAVA_SD = java
 
6
endif
 
7
if PHP_ENABLED
 
8
    PHP_SD = php
 
9
endif
 
10
if CSHARP_ENABLED
 
11
    CSHARP_SD = csharp
 
12
endif
 
13
if GTK_DOC_ENABLED
 
14
    GTK_DOC_SD = docs
 
15
endif
 
16
 
 
17
SUBDIRS         = lasso \
 
18
                  $(PHP_SD) $(PYTHON_SD) $(JAVA_SD) $(CSHARP_SD) \
 
19
                  tests \
 
20
                  swig \
 
21
                  win32 \
 
22
                  $(GTK_DOC_SD)
 
23
 
 
24
ABS_BUILDDIR    = $(shell pwd)
 
25
 
 
26
EXTRA_DIST      = COPYING lasso.pc.in
 
27
 
 
28
pkgconfig_DATA  = lasso.pc
 
29
pkgconfigdir    = $(libdir)/pkgconfig
 
30
 
 
31
clean-local:
 
32
        -rm -f lasso.pc
 
33