Skip to content

Commit c75ccda

Browse files
committed
refac: added automake config
1 parent 506a1ed commit c75ccda

29 files changed

+47364
-0
lines changed

.gitattributes

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
build-aux/** linguist-detectable=false
2+
src/Makefile linguist-detectable=false
3+
src/Makefile.in linguist-detectable=false
4+
test/Makefile linguist-detectable=false
5+
test/Makefile.in linguist-detectable=false
6+
aclocal.m4 linguist-detectable=false
7+
configure linguist-detectable=false
8+
config.status linguist-detectable=false
9+
libtool linguist-detectable=false
10+
Makefile linguist-detectable=false
11+
Makefile.in linguist-detectable=false

.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Autoconf
2+
.libs
3+
.deps
4+
autom4te.cache
5+
config.h
6+
config.log
7+
config.status
8+
configure~
9+
libtool
10+
Makefile
11+
stamp-h1
12+
113
# Prerequisites
214
*.d
315

@@ -31,6 +43,12 @@
3143
*.out
3244
*.app
3345

46+
# Testing files cov
47+
*.gcda
48+
*.gcno
49+
*.gcov
50+
51+
3452
# Visual Studio Folders
3553
.vs/
3654
VTGraph/Debug/
@@ -43,6 +61,12 @@ Release
4361
bin/
4462
obj/
4563

64+
# Custom Build Folders
65+
debug
66+
release
67+
coverage
68+
analisys
69+
4670
# Codeblocks project
4771
*.cbp
4872
*.depend

ChangeLog

Whitespace-only changes.

Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ACLOCAL_AMFLAGS = -I m4
2+
SUBDIRS = src tests
3+
dist_doc_DATA = README

0 commit comments

Comments
 (0)