1
0
Fork 0
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:
Alex Kotov 2020-11-27 15:29:53 +05:00
parent 0b0e203bac
commit 3d74f0e498
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
4 changed files with 7 additions and 6 deletions

2
.gitignore vendored
View file

@ -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/

View file

@ -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

View file

@ -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
View file

@ -0,0 +1,2 @@
nobase_include_HEADERS = \
libkernaux/pfa.h