On 4/19/25 13:16, Sam Varshavchik wrote:
After digging through make's documentation, a clue emerged:
# If an included makefile cannot be found in any of these directories
# it is not an immediately fatal error; processing of the makefile
# containing the 'include' continues. Once it has f
Peter Johansson writes:
I see the following at the end of configuring:
checking dependency style of g++... (cached) gcc3
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: executing depfiles commands
On 4/19/25 11:21, Sam Varshavchik wrote:
Peter Johansson writes:
Hi Sam,
On 4/18/25 21:56, Sam Varshavchik wrote:
Set up a minimal Makefile.am and configure.ac to build this.
Building this will create .deps/ with a:
main.o: main.h main.c
When I do this with GCC, the .deps/ also contai
Peter Johansson writes:
Hi Sam,
On 4/18/25 21:56, Sam Varshavchik wrote:
Set up a minimal Makefile.am and configure.ac to build this. Building this
will create .deps/ with a:
main.o: main.h main.c
When I do this with GCC, the .deps/ also contains a line
main.h:
and I have no problem r
Hi Sam,
On 4/18/25 21:56, Sam Varshavchik wrote:
Set up a minimal Makefile.am and configure.ac to build this. Building
this will create .deps/ with a:
main.o: main.h main.c
When I do this with GCC, the .deps/ also contains a line
main.h:
and I have no problem removing main.h and the #inc
-# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
+# developer-defined test setup AM_TESTS_ENVIRONMENT (if any), and
Thanks Reuben. I applied it. -k
I renamed find_file to find_file_with_opt
Thanks.
I would prefer to rename the original function to find_file_m4
I agree in the abstract, but it's not worth creating an incompatibility.
Look, the last argument *was* described:
Yes, I saw that, but a few words in the description wo
On Fri, Apr 18, 2025 at 07:56:49AM -0400, Sam Varshavchik wrote:
> .deps/filename gets created during building with --enable-dependency-tracking
> and should get removed by make clean. But it does not. For example:
Use 'make distclean' to remove depfiles.
Cheers,
Nick
.deps/filename gets created during building with --enable-dependency-
tracking and should get removed by make clean. But it does not. For example:
main.h:
int helloworld();
main.c:
#include
int helloworld()
{
return 0;
}
int main()
{
helloworld();
}
Set up a minimal Makefile.am and