From d5ed3980fb88589a6d221a0ae5bbf63ce66fae14 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 27 Oct 2019 14:06:06 +0100 Subject: [PATCH] Extend .gitignore to also ignore built files. --- .gitignore | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) diff --git a/.gitignore b/.gitignore index c193d80..abd190d 100644 --- a/.gitignore +++ b/.gitignore @@ -46,10 +46,118 @@ /src/Makefile.in /tests/Makefile.in +# ---------- "make maintainer-clean" gets you here ---------- + # Files generated by "make" and distributed # (i.e. kept by "make distclean") /doc/cln.info +# ---------- "make distclean" ought to get you here ---------- + +# Directories generated by "make" and mistakenly distributed +# (i.e. mistakenly kept by "make distclean"): +/autom4te.cache/ + +# ---------- "make distclean" gets you here ---------- + +# Files generated by "configure" and not distributed +# (i.e. erased by "make distclean"): +/config.log +/config.status +# Files created by "config.status": +/Makefile +/cln.pc +/cln.spec +/libtool +/autoconf/cl_config.h +/autoconf/stamp-h? +/benchmarks/Makefile +/doc/Makefile +/examples/Makefile +/include/cln/config.h +/include/cln/floatparam.h +/include/cln/host_cpu.h +/include/cln/intparam.h +/include/cln/stamp-h? +/include/cln/version.h +/src/Makefile +/src/base/cl_base_config.h +/src/base/cl_gmpconfig.h +/src/base/stamp-h? +/src/timing/cl_t_config.h +/src/timing/stamp-h? +/tests/Makefile +# Files created by "make": +/src/base/digitseq/cl_asm.S +/src/polynomial/elem/cl_asm_GF2.S + +# Directories generated by "make" and not distributed +# (i.e. erased by "make distclean"): +.deps/ + +# Files generated by "make" and not distributed +# (i.e. erased by "make distclean"): +.dirstamp + +# ---------- "make clean" gets you here ---------- + +# Directories generated by "make" and erased by "make clean": +/benchmarks/**/.libs/ +/examples/**/.libs/ +/src/**/.libs/ +/tests/**/.libs/ + +# Files generated by "make" and erased by "make clean" +# (see CLEANFILES in Makefile.am): +/src/libcln.la +# Executables generated by "make": +/benchmarks/timebench1 +/benchmarks/timebench1.exe +/benchmarks/timebench2a +/benchmarks/timebench2a.exe +/benchmarks/timebench2ap +/benchmarks/timebench2ap.exe +/benchmarks/timebench2b +/benchmarks/timebench2b.exe +/examples/contfrac +/examples/contfrac.exe +/examples/e +/examples/e.exe +/examples/fibonacci +/examples/fibonacci.exe +/examples/legendre +/examples/legendre.exe +/examples/lucaslehmer +/examples/lucaslehmer.exe +/examples/nextprime +/examples/nextprime.exe +/examples/perfnum +/examples/perfnum.exe +/examples/pi +/examples/pi.exe +/tests/exam +/tests/exam.exe +/tests/tests +/tests/tests.exe + +# ---------- "make mostlyclean" gets you here ---------- + +# Files generated by "make" and erased by "make mostlyclean" +# (see MOSTLYCLEANFILES in Makefile.am and, if present, Makefile.gnulib): +core +*.stackdump +# Object files. +*.o +*.lo +# gcov data files. +*.gcno +*.gcda +# Logs generated by Automake: +/tests/*.log +/tests/*.trs + +# ---------- "make all check" gets you here ---------- + # Patterns for all subdirectories: all kinds of automatic backup files. *.orig *.rej -- 2.49.0