Browse Source

Updates .gitignore and Makefile.am

Now the doc in generated before the code compils
Yann Weber 7 years ago
parent
commit
7362e716a2
2 changed files with 21 additions and 4 deletions
  1. 15
    1
      .gitignore
  2. 6
    3
      Makefile.am

+ 15
- 1
.gitignore View File

1
 .*.swp
1
 .*.swp
2
+*.o
3
+*.a
4
+*.tmp
5
+src/include/config.h
6
+src/include/stamp-h1
7
+src/ttail
8
+Makefile
2
 Makefile.in
9
 Makefile.in
3
-configure
10
+config.log
11
+config.status
4
 aclocal.m4
12
 aclocal.m4
5
 autom4te.cache/
13
 autom4te.cache/
6
 compile
14
 compile
8
 missing
16
 missing
9
 test-driver
17
 test-driver
10
 install-sh
18
 install-sh
19
+.deps
20
+tests/*.log
21
+tests/*.trs
22
+tests/Makefile*
23
+docs/html
24
+docs/man

+ 6
- 3
Makefile.am View File

1
-SUBDIRS = src . tests
2
-CLEANFILES = 
3
-#ACLOCAL_AMFLAGS = -I m4
1
+SUBDIRS = 
2
+
4
 if HAVE_DOXYGEN
3
 if HAVE_DOXYGEN
5
 SUBDIRS += docs
4
 SUBDIRS += docs
6
 docs:
5
 docs:
7
 	-cd docs; rm doxyfile.stamp; make doxyfile.stamp
6
 	-cd docs; rm doxyfile.stamp; make doxyfile.stamp
8
 .PHONY: docs
7
 .PHONY: docs
9
 endif
8
 endif
9
+
10
+SUBDIRS += src . tests
11
+CLEANFILES = 
12
+

Loading…
Cancel
Save