Re: include_HEADERS and all-am

2003-12-23 Thread jling
Hi Andreas, yes I did try that as well. In that case, I got: *** No rule to make target `all'. Stop. John - Original Message - From: Andreas Schwab <[EMAIL PROTECTED]> Date: Tuesday, December 23, 2003 7:36 am Subject: Re: include_HEADERS and all-am > [EMAIL PRO

Re: include_HEADERS and all-am

2003-12-23 Thread Andreas Schwab
[EMAIL PROTECTED] writes: > Given my Makefile.am: > > AM_CPPFLAGS = -I$(srcdir)/../inc > lib_LIBRARIES = libtest.a > libtest_a_SOURCES = test.cpp test.hpp > > This works fine. > > Now I add to the end of that: > include_HEADERS = test.hpp > > Now I get a make error: > > make[2]: *** No rule to ma

include_HEADERS and all-am

2003-12-22 Thread jling
Given my Makefile.am: AM_CPPFLAGS = -I$(srcdir)/../inc lib_LIBRARIES = libtest.a libtest_a_SOURCES = test.cpp test.hpp This works fine. Now I add to the end of that: include_HEADERS = test.hpp Now I get a make error: make[2]: *** No rule to make target 'test.hpp', needed by `all-am'. Stop.