summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2025-02-25 14:13:46 +0200
committerGitHub <noreply@github.com>2025-02-25 14:13:46 +0200
commitd6a89dda26671b05f8381ba99b65ab62b54fb24e (patch)
treeb711680042d9e226d5aa208c9a63084aa03a3a32
parentb5bc748a38cf88e8fa52fb8f55bf8014a188a9b9 (diff)
parentbbd3daa6b89de9fe2edc7a7a7b38dba98e48f1cc (diff)
downloadipaddrcheck-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--.gitignore79
-rw-r--r--src/ipaddrcheck_functions.obin55552 -> 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
deleted file mode 100644
index a689dac..0000000
--- a/src/ipaddrcheck_functions.o
+++ /dev/null
Binary files differ