diff options
| author | William A. Kennington III <wak@google.com> | 2018-11-02 17:20:52 -0700 |
|---|---|---|
| committer | William A. Kennington III <wak@google.com> | 2018-11-02 17:55:31 -0700 |
| commit | 4460f26c1182f412b5ab07f093a0f078191995ef (patch) | |
| tree | 9c44f5fd54bf4c209baf5fb09c454f606ede2d31 /.gitignore | |
| parent | 24b11271492483821a1132279a4e1df491c48a77 (diff) | |
| download | stdplus-4460f26c1182f412b5ab07f093a0f078191995ef.tar.gz stdplus-4460f26c1182f412b5ab07f093a0f078191995ef.zip | |
Initial Project Files
This adds the initial autotools scripts and some placeholder c++ files
so that the builder is happy.
Tested:
Built and run through the unit test script.
Change-Id: Ie7e7e062726761aad54b77e1c55fcb1ba91afd49
Signed-off-by: William A. Kennington III <wak@google.com>
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7d1eea5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,44 @@ +# Test suite logs +*.log + +# Code Coverage +*.gcda +*.gcno +*.trs +*-coverage* + +# CC / CXX Compiler +*.ii +*.i +*.o +*.s + +# Libtool +*.la +*.lo + +# Autotools +.deps +.dirstamp +.libs +/aclocal.m4 +/autom4te.cache +/build-aux +/confdefs.h +/config.h +/config.h.in +/config.h.in~ +/config.log +/config.status +/configure +/m4 +/libtool +Makefile +Makefile.in +/stamp-h1 + +# Custom generated files +/src/stdplus.pc + +# Output binaries +/test/placeholder |

