1
0
Fork 0

Tweaks to Gnu automake/autoconf system.

This commit is contained in:
curt 1998-04-08 23:35:37 +00:00
parent 79a773d25c
commit 63ea6cd15a
5 changed files with 17 additions and 14 deletions

View file

@ -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

View file

@ -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..

View file

@ -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 =

View file

@ -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..

View file

@ -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 =