Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install header files in Automake?

Tags:

automake

The following statement doesn't work:

dist_include_DATA = someheaders.h

which cause error:

Makefile.am:8: `includedir' is not a legitimate directory for `DATA'

Using:

  • GNU Autoconf 2.65
  • GNU Automake 1.11.1
  • GNU Make 3.81
like image 833
Xiè Jìléi Avatar asked Oct 14 '10 03:10

Xiè Jìléi


1 Answers

include_HEADERS = someheader.h
like image 182
Jack Kelly Avatar answered Oct 13 '22 13:10

Jack Kelly