From: curt Date: Mon, 7 Jul 1997 20:59:48 +0000 (+0000) Subject: Working on scenery transformations to enable us to fly fluidly over the X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f43e375d628923241362a6c102edc6ed9626b2c7;p=simgear.git Working on scenery transformations to enable us to fly fluidly over the poles with no discontinuity/distortion in scenery. --- diff --git a/Math/Makefile b/Math/Makefile index d4064422..0aaf1692 100644 --- a/Math/Makefile +++ b/Math/Makefile @@ -26,8 +26,7 @@ TARGET = libMath.a -CFILES = MAT3geom.c MAT3inv.c MAT3mat.c MAT3vec.c -HFILES = mat3.h mat3defs.h mat3err.h +CFILES = MAT3geom.c MAT3inv.c MAT3mat.c MAT3vec.c polar.c OFILES = $(CFILES:.c=.o) @@ -41,7 +40,7 @@ CFLAGS = $(FG_CFLAGS) # Primary Targets #--------------------------------------------------------------------------- -$(TARGET): $(OFILES) $(HFILES) +$(TARGET): $(OFILES) $(AR) rv $(TARGET) $(OFILES) all: $(TARGET) @@ -56,9 +55,16 @@ clean: include depend +polar.o: + $(CC) $(CFLAGS) -c polar.c + #--------------------------------------------------------------------------- # $Log$ +# Revision 1.8 1997/07/07 20:59:48 curt +# Working on scenery transformations to enable us to fly fluidly over the +# poles with no discontinuity/distortion in scenery. +# # Revision 1.7 1997/07/05 20:43:31 curt # renamed mat3 directory to Math so we could add other math related routines. # diff --git a/Math/depend b/Math/depend index 85534fcc..88df0fdf 100644 --- a/Math/depend +++ b/Math/depend @@ -2,3 +2,4 @@ MAT3geom.o: MAT3geom.c mat3defs.h mat3.h MAT3inv.o: MAT3inv.c mat3defs.h mat3.h MAT3mat.o: MAT3mat.c mat3defs.h mat3.h MAT3vec.o: MAT3vec.c mat3.h +polar.o: polar.c polar.h ../types.h ../constants.h