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
|
||||||
/configure.scan
|
/configure.scan
|
||||||
/depcomp
|
/depcomp
|
||||||
|
/include/Makefile
|
||||||
|
/include/Makefile.in
|
||||||
/install-sh
|
/install-sh
|
||||||
/missing
|
/missing
|
||||||
/src/.deps/
|
/src/.deps/
|
||||||
|
|
|
@ -1,12 +1,8 @@
|
||||||
|
SUBDIRS = include
|
||||||
|
|
||||||
AM_CFLAGS = -I$(top_srcdir)/include
|
AM_CFLAGS = -I$(top_srcdir)/include
|
||||||
|
|
||||||
lib_LIBRARIES = libkernaux.a
|
lib_LIBRARIES = libkernaux.a
|
||||||
|
|
||||||
libkernaux_adir = $(includedir)/libkernaux
|
|
||||||
|
|
||||||
libkernaux_a_HEADERS = \
|
|
||||||
include/libkernaux/pfa.h
|
|
||||||
|
|
||||||
libkernaux_a_SOURCES = \
|
libkernaux_a_SOURCES = \
|
||||||
$(libkernaux_a_HEADERS) \
|
|
||||||
src/pfa.c
|
src/pfa.c
|
||||||
|
|
|
@ -7,6 +7,7 @@ AM_INIT_AUTOMAKE([1.9 subdir-objects -Wall -Werror])
|
||||||
|
|
||||||
AC_CONFIG_FILES([
|
AC_CONFIG_FILES([
|
||||||
Makefile
|
Makefile
|
||||||
|
include/Makefile
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_LANG([C])
|
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