Remove scons files. Update README, gitignore and install targets.
[anna.git] / source / comm / SConscript
diff --git a/source/comm/SConscript b/source/comm/SConscript
deleted file mode 100644 (file)
index f30dde1..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-Import ('env')
-
-sources = Glob('*.cpp')
-sources_transport = Glob('transport/*.cpp')
-sources_handler = Glob('handler/*.cpp')
-sources_internal = Glob('internal/*.cpp')
-
-source_files = [
-  sources,
-  sources_transport,
-  sources_handler,
-  sources_internal,
-]
-
-result = env.StaticLibrary ('anna_comm', source_files);
-
-Return ('result')
-