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,6 +1,14 @@
1 1
 .*.swp
2
+*.o
3
+*.a
4
+*.tmp
5
+src/include/config.h
6
+src/include/stamp-h1
7
+src/ttail
8
+Makefile
2 9
 Makefile.in
3
-configure
10
+config.log
11
+config.status
4 12
 aclocal.m4
5 13
 autom4te.cache/
6 14
 compile
@@ -8,3 +16,9 @@ depcomp
8 16
 missing
9 17
 test-driver
10 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,9 +1,12 @@
1
-SUBDIRS = src . tests
2
-CLEANFILES = 
3
-#ACLOCAL_AMFLAGS = -I m4
1
+SUBDIRS = 
2
+
4 3
 if HAVE_DOXYGEN
5 4
 SUBDIRS += docs
6 5
 docs:
7 6
 	-cd docs; rm doxyfile.stamp; make doxyfile.stamp
8 7
 .PHONY: docs
9 8
 endif
9
+
10
+SUBDIRS += src . tests
11
+CLEANFILES = 
12
+

Loading…
Cancel
Save