From de7a214c173c75eba273e6cfaefa2ec8a3bc9c57 Mon Sep 17 00:00:00 2001 From: Kirill Smelkov Date: Sat, 12 Jun 2010 18:18:19 +0400 Subject: .cvsignore -> .gitignore We no longer use CVS, so let's teach Git about what files to ignore... ... though doing `git status` after make + `make test` still gives untracked content: # Untracked files: # (use "git add ..." to include in what will be committed) # # alloca86-bt.o # alloca86.o # bcheck.o # libtcc.a # libtcc.o # libtcc1.a # libtcc1.o # tcc.o See next patch about this stuff. --- .gitignore | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..95daa1f --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +tcc_g +tcc +tc2.c +doc +tc3s.c +p3.c +tc1.c +error.c +i386-gen1.c +test.out2 +test.out3 +web.sh +memdebug.c +bench +Makefile.uClibc +boundtest +prog.ref +test.ref +test.out +tcc-doc.html +ideas +tcctest.ref +linux.tcc +ldtest +libtcc_test +instr.S +p.c +p2.c +tcctest[1234] +test[1234].out +.gdb_history +tcc.1 +tcc.pod +config.h +config.mak +config.texi +tests \ No newline at end of file -- cgit v1.3.1 From 5344b2e73bd2bdb6f5b72cf909a6ddb59232645e Mon Sep 17 00:00:00 2001 From: Kirill Smelkov Date: Sat, 12 Jun 2010 18:26:37 +0400 Subject: .gitignore += *.o *.a Ignores libtcc.o, libtcc.a and a bunch of other files (see previous patch for details) --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 95daa1f..df16ed9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +*.o +*.a tcc_g tcc tc2.c -- cgit v1.3.1 From 2fe5210a33556ed18bc878046d39e25964a52840 Mon Sep 17 00:00:00 2001 From: Kirill Smelkov Date: Sun, 20 Jun 2010 20:48:16 +0400 Subject: .gitignore += tags --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index df16ed9..a845ddc 100644 --- a/.gitignore +++ b/.gitignore @@ -36,4 +36,5 @@ tcc.pod config.h config.mak config.texi -tests \ No newline at end of file +tests +tags -- cgit v1.3.1