Skip to content

Commit 4f4e24d

Browse files
committed
Add missing entries to .gitignore
Add the new executables, tests, and some missing generated files. For files that appear in a specific directory, prefix them with "/"
1 parent 99b3a01 commit 4f4e24d

File tree

4 files changed

+97
-53
lines changed

4 files changed

+97
-53
lines changed

.gitignore

+44-28
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,63 @@
1-
# Object files
1+
# Object files and libraries
22
*.o
3-
*.lo
4-
5-
# Libraries
6-
.libs
7-
*.lib
83
*.a
9-
*.la
4+
*.lib
105

116
# Shared objects (inc. Windows DLLs)
127
*.dll
138
*.so
149
*.so.*
1510
*.dylib
1611

17-
# Executables
12+
# Windows executables
1813
*.exe
19-
*.out
20-
*.app
2114

2215
# generated by autogen.sh
16+
.deps
2317
Makefile.in
24-
aclocal.m4
25-
autom4te.cache
26-
compile
27-
config.guess
28-
config.h.in
29-
config.sub
30-
configure
31-
depcomp
32-
install-sh
33-
ltmain.sh
34-
missing
18+
/aclocal.m4
19+
/ar-lib
20+
/autom4te.cache
21+
/compile
22+
/config.guess
23+
/config.h.in
24+
/config.sub
25+
/configure
26+
/depcomp
27+
/install-sh
28+
/ltmain.sh
29+
/m4
30+
/missing
31+
/test-driver
3532

3633
# generated by configure
37-
.deps
3834
Makefile
39-
adflib.pc
40-
config.h
41-
config.log
42-
config.status
43-
libtool
44-
stamp-h1
35+
/adflib.pc
36+
/config.h
37+
/config.log
38+
/config.status
39+
/libtool
40+
/stamp-h1
41+
42+
# generated by automake builds
43+
.dirstamp
44+
.libs
45+
*.la
46+
*.lo
47+
48+
# generated by make distcheck
49+
/adflib-*.*.*
50+
51+
# generated by util/cmake_* scripts
52+
/build
53+
54+
# generated by cmake . (in-tree build)
55+
CMakeFiles
56+
CTestTestfile.cmake
57+
cmake_install.cmake
58+
/CMakeCache.txt
59+
/Testing
60+
/src/config.h
4561

4662
# temp / backup files
4763
*~

examples/.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
unadf
1+
/adf_floppy_create
2+
/adf_floppy_format
3+
/adf_show_metadata
4+
/unadf

regtests/Test/.gitignore

+33-24
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,33 @@
1-
access
2-
bootdisk
3-
comment
4-
del_test
5-
dir_test
6-
dir_test2
7-
dispsect
8-
file_test
9-
file_test2
10-
file_test3
11-
fl_test
12-
fl_test2
13-
hardfile
14-
hardfile2
15-
hd_test
16-
hd_test2
17-
hd_test3
18-
progbar
19-
readonly
20-
rename
21-
rename2
22-
undel
23-
undel2
24-
undel3
1+
*.log
2+
*.trs
3+
/access
4+
/bootdisk
5+
/cache_crash
6+
/comment
7+
/del_test
8+
/dir_test
9+
/dir_test2
10+
/dir_test_chdir
11+
/dispsect
12+
/file_read_hard_link_test
13+
/file_seek_after_write
14+
/file_seek_test
15+
/file_seek_test2
16+
/file_test
17+
/file_test2
18+
/file_test3
19+
/fl_test
20+
/fl_test2
21+
/floppy_overfilling_test
22+
/hardfile
23+
/hardfile2
24+
/hd_test
25+
/hd_test2
26+
/hd_test3
27+
/progbar
28+
/readonly
29+
/rename
30+
/rename2
31+
/undel
32+
/undel2
33+
/undel3

tests/.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
*.log
2+
*.trs
3+
/test_adfDays2Date
4+
/test_adfPos2DataBlock
5+
/test_adf_file_util
6+
/test_file_append
7+
/test_file_create
8+
/test_file_overwrite
9+
/test_file_overwrite2
10+
/test_file_seek
11+
/test_file_seek_after_write
12+
/test_file_truncate
13+
/test_file_truncate2
14+
/test_file_write
15+
/test_file_write_chunks
16+
/test_test_util

0 commit comments

Comments
 (0)