Remove scons files. Update README, gitignore and install targets.
[anna.git] / source / ldap / SConscript
diff --git a/source/ldap/SConscript b/source/ldap/SConscript
deleted file mode 100644 (file)
index d5e77ab..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-Import ('env')
-
-# Copy environment to add LDAP_DEPRECATED only for ldap module
-envLDAP = env.Clone()
-envLDAP.Append(CCFLAGS = ['-DLDAP_DEPRECATED'])
-#envLDAP['CCFLAGS'] += ['-DLDAP_DEPRECATED']
-
-sources = Glob('*.cpp')
-sources_internal = Glob('internal/*.cpp')
-
-result = envLDAP.StaticLibrary ('anna_ldap', [sources, sources_internal]);
-
-Return ('result')
-