Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .gitignore for new make system #93

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 14 additions & 52 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,67 +1,29 @@
# Prerequisites
*.d

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app

# VS Code Configs
*.vscode

# Test and Coverage Files
*.gcno
*.gcda
*.gcov
*_q*

# Build System
.deps
.dirstamp
.local-version
Makefile
Makefile.in
aclocal.m4
autom4te.cache
build/autoconf/compile
build/autoconf/config.guess
build/autoconf/config.sub
build/autoconf/depcomp
build/autoconf/install-sh
build/autoconf/ltmain.sh
build/autoconf/m4/libtool.m4
build/autoconf/m4/ltoptions.m4
build/autoconf/m4/ltsugar.m4
build/autoconf/m4/ltversion.m4
build/autoconf/m4/lt~obsolete.m4
build/autoconf/missing
build/autoconf/test-driver
build/*
!build/autoconf/m4/nl_with_lwip.m4
!build/config/standalone/CHIPProjectConfig.h
!build/config/standalone/SystemProjectConfig.h
!build/config/standalone/darwin/CHIPProjectConfig.h
!build/config/standalone/no-openssl/CHIPProjectConfig.h
config.log
config.status
configure
src/include/BuildConfig.h.in


# Repos stuff
.repos-warning-stamp
third_party/nlassert/
third_party/nlfaultinjection/
third_party/nlio/
third_party/nlunit-test/
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The CHIP repository is structured as follows:
| `.default-version` | Default CHIP version if none is available via source code control tags, `.dist-version`, or `.local-version`.|
| `bootstrap` | GNU autotools bootstrap script for the CHIP build system. |
| `bootstrap-configure` | Convenience script that will bootstrap the CHIP build system, via `bootstrap`, and invoke `configure`.|
| `build/` | Build system support content |
| `build/` | Build system support content and build output directories |
| `BUILDING.md` | More detailed information on configuring and building CHIP for different targets |
| `CODE_OF_CONDUCT.md` | Code of Conduct for CHIP, and contributions to it |
| `CONTRIBUTING.md` | Guidelines for contributing to CHIP |
Expand All @@ -33,6 +33,7 @@ The CHIP repository is structured as follows:
| `integrations/` | Third party integrations related to this project |
| `integrations/github/` | GitHub integrations related to this project |
| `integrations/github/actions` | GitHub actions related to this project |
| `integrations/docker/` | Docker scripts and Dockerfiles |
| `images/` | Images |
| `LICENSE` | CHIP License file (Apache 2.0) |
| `Makefile-Android` | Convenience makefile for building CHIP against Android.|
Expand Down