Tweaks to Gnu automake/autoconf system.
This commit is contained in:
parent
79a773d25c
commit
63ea6cd15a
5 changed files with 17 additions and 14 deletions
|
@ -5,6 +5,9 @@
|
|||
* This file contains routines that operate solely on matrices.
|
||||
* -------------------------------------------------------------------------*/
|
||||
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#ifdef WIN32
|
||||
# include <memory.h> /* required for memset() and memcpy() */
|
||||
#endif
|
||||
|
|
|
@ -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..
|
||||
|
|
|
@ -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 =
|
||||
|
|
|
@ -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..
|
||||
|
|
|
@ -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 =
|
||||
|
|
Loading…
Reference in a new issue