~paulliu/ubuntu/quantal/freerdp/fixext

« back to all changes in this revision

Viewing changes to libfreerdp/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2012-01-31 10:02:14 UTC
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20120131100214-zvig71djj2sqgq22
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Process this file with automake to produce Makefile.in
2
 
 
3
 
# libfreerdp
4
 
libfreerdpdir = $(libdir)
5
 
 
6
 
libfreerdp_LTLIBRARIES = libfreerdp.la
7
 
 
8
 
libfreerdp_la_SOURCES = \
9
 
        asn1.c asn1.h \
10
 
        bitmap.c bitmap.h \
11
 
        cache.c cache.h \
12
 
        capabilities.c capabilities.h \
13
 
        chan.c chan.h \
14
 
        constants.h \
15
 
        constants_capabilities.h \
16
 
        constants_core.h \
17
 
        constants_crypto.h \
18
 
        constants_license.h \
19
 
        constants_pdu.h \
20
 
        constants_rail.h \
21
 
        constants_window.h \
22
 
        freerdp.c \
23
 
        iso.c iso.h \
24
 
        licence.c licence.h \
25
 
        mcs.c mcs.h \
26
 
        mem.c mem.h \
27
 
        mppc.c \
28
 
        orders.c orders.h \
29
 
        orderstypes.h \
30
 
        stream.h \
31
 
        pstcache.c pstcache.h \
32
 
        rail.c rail.h \
33
 
        rdp.c rdp.h \
34
 
        rdp5.c \
35
 
        secure.c secure.h \
36
 
        crypto.h \
37
 
        tcp.c tcp.h \
38
 
        types.h debug.h frdp.h
39
 
 
40
 
if CRYPTO_NSS
41
 
libfreerdp_la_SOURCES += crypto_nss.c
42
 
endif
43
 
 
44
 
if CRYPTO_GNUTLS
45
 
libfreerdp_la_SOURCES += crypto_gnutls.c
46
 
endif
47
 
 
48
 
if CRYPTO_OPENSSL
49
 
libfreerdp_la_SOURCES += crypto_openssl.c
50
 
endif
51
 
 
52
 
if CRYPTO_POLARSSL
53
 
libfreerdp_la_SOURCES += crypto_polarssl.c
54
 
endif
55
 
 
56
 
if CRYPTO_SIMPLE
57
 
libfreerdp_la_SOURCES += crypto_simple.c ssl.c ssl.h
58
 
endif
59
 
 
60
 
if ENABLE_TLS
61
 
libfreerdp_la_SOURCES += tls.c tls.h credssp.c credssp.h
62
 
endif
63
 
 
64
 
libfreerdp_la_CFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/include/freerdp \
65
 
        -I$(top_srcdir)/asn1 @CRYPTO_CFLAGS@ -DFREERDP_EXPORTS
66
 
 
67
 
libfreerdp_la_LDFLAGS =
68
 
 
69
 
libfreerdp_la_LIBADD = ../asn1/libasn1.la @CRYPTO_LIBS@ @LIBICONV@
70
 
 
71
 
# extra
72
 
EXTRA_DIST =
73
 
 
74
 
DISTCLEANFILES = 
75