diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2025-02-25 14:13:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-25 14:13:46 +0200 |
| commit | d6a89dda26671b05f8381ba99b65ab62b54fb24e (patch) | |
| tree | b711680042d9e226d5aa208c9a63084aa03a3a32 | |
| parent | b5bc748a38cf88e8fa52fb8f55bf8014a188a9b9 (diff) | |
| parent | bbd3daa6b89de9fe2edc7a7a7b38dba98e48f1cc (diff) | |
| download | ipaddrcheck-d6a89dda26671b05f8381ba99b65ab62b54fb24e.tar.gz ipaddrcheck-d6a89dda26671b05f8381ba99b65ab62b54fb24e.zip | |
Merge pull request #14 from dmbaturin/T7195-no-build-garbage
T7195: remove an accidentally committed object file and add a proper .gitignore
| -rw-r--r-- | .gitignore | 79 | ||||
| -rw-r--r-- | src/ipaddrcheck_functions.o | bin | 55552 -> 0 bytes |
2 files changed, 79 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6f267c1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,79 @@ +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Autotools-generated files + +Makefile +Makefile.in +aclocal.m4 +autom4te.cache/ +compile +config.status +configure +depcomp +install-sh +man/Makefile +man/Makefile.in +missing +src/.deps/ +src/.dirstamp +src/Makefile +src/Makefile.in +src/config.h +src/config.h.in +src/stamp-h1 +test-driver +tests/.deps/ +tests/Makefile +tests/Makefile.in + +# Misc + +*.log +*.trs + +# Build artifacts + +src/ipaddrcheck +tests/check_ipaddrcheck diff --git a/src/ipaddrcheck_functions.o b/src/ipaddrcheck_functions.o Binary files differdeleted file mode 100644 index a689dac..0000000 --- a/src/ipaddrcheck_functions.o +++ /dev/null |
