From 634772f76d34687119aa80bdcbd2129c95b9202e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20D=C5=82ugo=C5=82=C4=99cki?= Date: Sat, 21 Mar 2015 16:07:57 +0100 Subject: [PATCH] Clean git status view. --- .gitignore | 18 ++++++++++++++++++ config.h | 26 ++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 .gitignore create mode 100644 config.h diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a28370d --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +Makefile +Makefile.in +aclocal.m4 +autom4te.cache +bin +config.guess +config.log +config.status +config.sub +configure +missing +src/.deps +src/.dirstamp +*.o +stamp-h1 +depcomp +install-sh +config.h.in diff --git a/config.h b/config.h new file mode 100644 index 0000000..a130365 --- /dev/null +++ b/config.h @@ -0,0 +1,26 @@ +/* config.h. Generated from config.h.in by configure. */ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Name of package */ +#define PACKAGE "genetic" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "bugz@dlugolecki.net.pl" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "Genetic" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "Genetic 0.1" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "genetic" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "http://dlugolecki.net.pl/software/genetic/" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "0.1" + +/* Version number of package */ +#define VERSION "0.1" -- 2.30.2