Remove scons files. Update README, gitignore and install targets.
[anna.git] / example / dbms.mysql / insert / SConscript
diff --git a/example/dbms.mysql/insert/SConscript b/example/dbms.mysql/insert/SConscript
deleted file mode 100644 (file)
index ab8a48f..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-Import ('env')
-
-# Process #################################################################
-#pName = "example_dbms.mysql_insert"
-#pName = "example_<module>_<process>"
-bnames = Dir('..').abspath.rsplit('/', 2)
-pName = "example_" + bnames[-2] + "_" + bnames[-1]
-
-# Libraries ###############################################################
-# To avoid other libraries accumulation:
-localEnv = env.Clone()
-
-system_library = { 'LIBS' : [ 'mysqlclient' ] }
-localEnv.MergeFlags (system_library)
-
-# Linking #################################################################
-result = localEnv.Program (pName, Glob ('*.c'))
-
-
-Return ('result')