diff options
author | jsorg71 <jsorg71> | 2008-08-06 05:06:03 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2008-08-06 05:06:03 +0000 |
commit | 59a2d1dea6a6ebd9ba0cc6c2fcf279db91091ede (patch) | |
tree | 95f7745befefeda31ceeeb6c6ca76396f3e527f3 /common/Makefile.am | |
parent | a905f1dc80267fbecc4a30c305d8c796b207f7ef (diff) | |
download | xrdp-proprietary-59a2d1dea6a6ebd9ba0cc6c2fcf279db91091ede.tar.gz xrdp-proprietary-59a2d1dea6a6ebd9ba0cc6c2fcf279db91091ede.zip |
build common as a library
Diffstat (limited to 'common/Makefile.am')
-rw-r--r-- | common/Makefile.am | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index bdecbda4..0d0e6495 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -1,11 +1,7 @@ +lib_LTLIBRARIES = \ + libxrdp-common.la -INCLUDES = \ - -fPIC - -noinst_LIBRARIES = \ - libxrdp-common.a - -libxrdp_common_a_SOURCES = \ +libxrdp_common_la_SOURCES = \ d3des.c \ file.c \ list.c \ @@ -13,3 +9,10 @@ libxrdp_common_a_SOURCES = \ os_calls.c \ ssl_calls.c \ thread_calls.c + +libxrdp_common_la_LIBADD = \ + -lcrypto \ + -lpthread + +libxrdp_common_la_LDFLAGS = \ + -version-info 5:0:5 |