~ubuntu-branches/ubuntu/utopic/lasso/utopic-proposed

« back to all changes in this revision

Viewing changes to lasso/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
SUBDIRS = xml protocols environs
 
2
 
 
3
liblassoincludedir = $(includedir)/lasso
 
4
 
 
5
INCLUDES = \
 
6
        -I$(top_srcdir) \
 
7
        $(LASSO_DEFINES) \
 
8
        $(LASSO_CFLAGS)
 
9
 
 
10
## Added to activate libtool 1.5.6 windows resources partial support
 
11
LTRCCOMPILE = $(LIBTOOL) --tag=RC --mode=compile $(RC) \
 
12
     `echo $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) |\
 
13
         sed -e 's/-I/--include-dir /g;s/-D/--define /g'`
 
14
 
 
15
## Added to activate libtool 1.5.6 windows resources partial support
 
16
lasso.rc.lo: $(top_srcdir)/win32/lasso.rc
 
17
        $(LTRCCOMPILE) -i $< -o $@
 
18
 
 
19
 
 
20
lib_LTLIBRARIES = liblasso.la
 
21
 
 
22
liblassoinclude_HEADERS = export.h lasso.h lasso_config.h
 
23
 
 
24
liblasso_la_SOURCES = lasso.c
 
25
 
 
26
if MINGW
 
27
liblasso_la_LIBADD = \
 
28
        $(top_builddir)/lasso/xml/liblasso-xml.la \
 
29
        $(top_builddir)/lasso/protocols/liblasso-protocols.la \
 
30
        $(top_builddir)/lasso/environs/liblasso-environs.la \
 
31
        $(LASSO_LIBS) \
 
32
        lasso.rc.lo
 
33
# Just make damn sure the ABI stays the same between
 
34
# upgrades.
 
35
# Obviously if you don't, fixing the situation up again can be painful. 
 
36
liblasso_la_LDFLAGS = -no-undefined -version-info @LASSO_VERSION_INFO@ \
 
37
                      -Wl,--add-stdcall-alias 
 
38
else
 
39
liblasso_la_LIBADD = \
 
40
        $(top_builddir)/lasso/xml/liblasso-xml.la \
 
41
        $(top_builddir)/lasso/protocols/liblasso-protocols.la \
 
42
        $(top_builddir)/lasso/environs/liblasso-environs.la \
 
43
        $(LASSO_LIBS)
 
44
# Just make damn sure the ABI stays the same between
 
45
# upgrades.
 
46
# Obviously if you don't, fixing the situation up again can be painful. 
 
47
liblasso_la_LDFLAGS = -no-undefined -version-info @LASSO_VERSION_INFO@
 
48
endif
 
49
 
 
50