mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-27 11:14:42 -05:00
Install headers in right place
This commit is contained in:
parent
0b0e203bac
commit
3d74f0e498
4 changed files with 7 additions and 6 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -13,6 +13,8 @@
|
|||
/configure
|
||||
/configure.scan
|
||||
/depcomp
|
||||
/include/Makefile
|
||||
/include/Makefile.in
|
||||
/install-sh
|
||||
/missing
|
||||
/src/.deps/
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
SUBDIRS = include
|
||||
|
||||
AM_CFLAGS = -I$(top_srcdir)/include
|
||||
|
||||
lib_LIBRARIES = libkernaux.a
|
||||
|
||||
libkernaux_adir = $(includedir)/libkernaux
|
||||
|
||||
libkernaux_a_HEADERS = \
|
||||
include/libkernaux/pfa.h
|
||||
|
||||
libkernaux_a_SOURCES = \
|
||||
$(libkernaux_a_HEADERS) \
|
||||
src/pfa.c
|
||||
|
|
|
@ -7,6 +7,7 @@ AM_INIT_AUTOMAKE([1.9 subdir-objects -Wall -Werror])
|
|||
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
include/Makefile
|
||||
])
|
||||
|
||||
AC_LANG([C])
|
||||
|
|
2
include/Makefile.am
Normal file
2
include/Makefile.am
Normal file
|
@ -0,0 +1,2 @@
|
|||
nobase_include_HEADERS = \
|
||||
libkernaux/pfa.h
|
Loading…
Reference in a new issue