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.
|
* This file contains routines that operate solely on matrices.
|
||||||
* -------------------------------------------------------------------------*/
|
* -------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
# include <memory.h> /* required for memset() and memcpy() */
|
# include <memory.h> /* required for memset() and memcpy() */
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -6,9 +6,10 @@ libMath_la_SOURCES = \
|
||||||
MAT3inv.c \
|
MAT3inv.c \
|
||||||
MAT3mat.c \
|
MAT3mat.c \
|
||||||
MAT3vec.c \
|
MAT3vec.c \
|
||||||
fg_geodesy.c \
|
fg_geodesy.c fg_geodesy.h \
|
||||||
fg_random.c \
|
fg_random.c fg_random.h \
|
||||||
polar.c \
|
mat3.h mat3defs.h mat3err.h \
|
||||||
vector.c
|
polar.c polar.h \
|
||||||
|
vector.c vector.h
|
||||||
|
|
||||||
INCLUDES += -I..
|
INCLUDES += -I..
|
||||||
|
|
|
@ -78,10 +78,11 @@ libMath_la_SOURCES = \
|
||||||
MAT3inv.c \
|
MAT3inv.c \
|
||||||
MAT3mat.c \
|
MAT3mat.c \
|
||||||
MAT3vec.c \
|
MAT3vec.c \
|
||||||
fg_geodesy.c \
|
fg_geodesy.c fg_geodesy.h \
|
||||||
fg_random.c \
|
fg_random.c fg_random.h \
|
||||||
polar.c \
|
mat3.h mat3defs.h mat3err.h \
|
||||||
vector.c
|
polar.c polar.h \
|
||||||
|
vector.c vector.h
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
CONFIG_HEADER = ../../Simulator/Include/config.h
|
CONFIG_HEADER = ../../Simulator/Include/config.h
|
||||||
CONFIG_CLEAN_FILES =
|
CONFIG_CLEAN_FILES =
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
libdir = ${exec_prefix}/lib
|
libdir = ${exec_prefix}/lib
|
||||||
|
|
||||||
lib_LTLIBRARIES = libXGL.la
|
lib_LTLIBRARIES = libXGL.la
|
||||||
libXGL_la_SOURCES = \
|
|
||||||
xgl.c \
|
libXGL_la_SOURCES = xgl.c xgl.h xglUtils.c
|
||||||
xglUtils.c
|
|
||||||
|
|
||||||
INCLUDES += -I..
|
INCLUDES += -I..
|
||||||
|
|
|
@ -73,9 +73,8 @@ VERSION = @VERSION@
|
||||||
libdir = ${exec_prefix}/lib
|
libdir = ${exec_prefix}/lib
|
||||||
|
|
||||||
lib_LTLIBRARIES = libXGL.la
|
lib_LTLIBRARIES = libXGL.la
|
||||||
libXGL_la_SOURCES = \
|
|
||||||
xgl.c \
|
libXGL_la_SOURCES = xgl.c xgl.h xglUtils.c
|
||||||
xglUtils.c
|
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
CONFIG_HEADER = ../../Simulator/Include/config.h
|
CONFIG_HEADER = ../../Simulator/Include/config.h
|
||||||
CONFIG_CLEAN_FILES =
|
CONFIG_CLEAN_FILES =
|
||||||
|
|
Loading…
Reference in a new issue