Browse Source

Set headers as noinst_HEADERS

In order to not install them.
Yann Weber 7 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
 #Warning : not tested
37
 #Warning : not tested
38
 make install
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
 noinst_LIBRARIES= libttail.a
2
 noinst_LIBRARIES= libttail.a
3
 
3
 
4
 EXTRA_DIST = include/doxygen.h
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
 	include/ttail_search.h include/ttail_search_files.h \
6
 	include/ttail_search.h include/ttail_search_files.h \
7
 	include/ttail_search_std.h
7
 	include/ttail_search_std.h
8
 
8
 

+ 1
- 1
tests/regen.sh View File

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

Loading…
Cancel
Save