Browse Source

Set headers as noinst_HEADERS

In order to not install them.
Yann Weber 6 years ago
parent
commit
2fc89b7c52
3 changed files with 7 additions and 2 deletions
  1. 5
    0
      README
  2. 1
    1
      src/Makefile.am
  3. 1
    1
      tests/regen.sh

+ 5
- 0
README View File

@@ -37,3 +37,8 @@ Installation :
37 37
 #Warning : not tested
38 38
 make install
39 39
 
40
+Building a debian package :
41
+---------------------------
42
+
43
+debuild -b -uc -us
44
+

+ 1
- 1
src/Makefile.am View File

@@ -2,7 +2,7 @@ bin_PROGRAMS = ttail
2 2
 noinst_LIBRARIES= libttail.a
3 3
 
4 4
 EXTRA_DIST = include/doxygen.h
5
-pkginclude_HEADERS = include/ttail.h include/ttail_init.h \
5
+noinst_HEADERS = include/ttail.h include/ttail_init.h \
6 6
 	include/ttail_search.h include/ttail_search_files.h \
7 7
 	include/ttail_search_std.h
8 8
 

+ 1
- 1
tests/regen.sh View File

@@ -6,7 +6,7 @@ echo "Generating $(pwd)/Makefile.am"
6 6
 progs="$(echo *.c | sed -e 's/\.c / /g' -e 's/\.c$//')"
7 7
 echo "TESTS = $progs
8 8
 check_PROGRAMS = $progs
9
-pkginclude_HEADERS = ttail_check.h
9
+noinst_HEADERS = ttail_check.h
10 10
 EXTRA_DIST = samples" > Makefile.am
11 11
 
12 12
 for p in $progs

Loading…
Cancel
Save