From: curt Date: Wed, 8 Apr 1998 23:35:37 +0000 (+0000) Subject: Tweaks to Gnu automake/autoconf system. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=63ea6cd15a7cd12cb642dd47c8908c40f4857353;p=flightgear.git Tweaks to Gnu automake/autoconf system. --- diff --git a/Math/MAT3mat.c b/Math/MAT3mat.c index d827cf942..fe4f3ba41 100644 --- a/Math/MAT3mat.c +++ b/Math/MAT3mat.c @@ -5,6 +5,9 @@ * This file contains routines that operate solely on matrices. * -------------------------------------------------------------------------*/ + +#include + #ifdef WIN32 # include /* required for memset() and memcpy() */ #endif diff --git a/Math/Makefile.am b/Math/Makefile.am index be0a85ea2..01af4fd34 100644 --- a/Math/Makefile.am +++ b/Math/Makefile.am @@ -6,9 +6,10 @@ libMath_la_SOURCES = \ MAT3inv.c \ MAT3mat.c \ MAT3vec.c \ - fg_geodesy.c \ - fg_random.c \ - polar.c \ - vector.c + fg_geodesy.c fg_geodesy.h \ + fg_random.c fg_random.h \ + mat3.h mat3defs.h mat3err.h \ + polar.c polar.h \ + vector.c vector.h INCLUDES += -I.. diff --git a/Math/Makefile.in b/Math/Makefile.in index eae70e20c..cd7d4153b 100644 --- a/Math/Makefile.in +++ b/Math/Makefile.in @@ -78,10 +78,11 @@ libMath_la_SOURCES = \ MAT3inv.c \ MAT3mat.c \ MAT3vec.c \ - fg_geodesy.c \ - fg_random.c \ - polar.c \ - vector.c + fg_geodesy.c fg_geodesy.h \ + fg_random.c fg_random.h \ + mat3.h mat3defs.h mat3err.h \ + polar.c polar.h \ + vector.c vector.h mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../../Simulator/Include/config.h CONFIG_CLEAN_FILES = diff --git a/XGL/Makefile.am b/XGL/Makefile.am index 771a33a2d..4f0a77126 100644 --- a/XGL/Makefile.am +++ b/XGL/Makefile.am @@ -1,8 +1,7 @@ libdir = ${exec_prefix}/lib lib_LTLIBRARIES = libXGL.la -libXGL_la_SOURCES = \ - xgl.c \ - xglUtils.c + +libXGL_la_SOURCES = xgl.c xgl.h xglUtils.c INCLUDES += -I.. diff --git a/XGL/Makefile.in b/XGL/Makefile.in index 710e2711d..8d03a4fdd 100644 --- a/XGL/Makefile.in +++ b/XGL/Makefile.in @@ -73,9 +73,8 @@ VERSION = @VERSION@ libdir = ${exec_prefix}/lib lib_LTLIBRARIES = libXGL.la -libXGL_la_SOURCES = \ - xgl.c \ - xglUtils.c + +libXGL_la_SOURCES = xgl.c xgl.h xglUtils.c mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../../Simulator/Include/config.h CONFIG_CLEAN_FILES =