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. --- .cvsignore | 37 ------------------------------------- .gitignore | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 37 deletions(-) delete mode 100644 .cvsignore create mode 100644 .gitignore diff --git a/.cvsignore b/.cvsignore deleted file mode 100644 index 95daa1f..0000000 --- a/.cvsignore +++ /dev/null @@ -1,37 +0,0 @@ -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 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