]> git.mxchange.org Git - simgear.git/commitdiff
Working on scenery transformations to enable us to fly fluidly over the
authorcurt <curt>
Mon, 7 Jul 1997 20:59:48 +0000 (20:59 +0000)
committercurt <curt>
Mon, 7 Jul 1997 20:59:48 +0000 (20:59 +0000)
poles with no discontinuity/distortion in scenery.

Math/Makefile
Math/depend

index d40644222157e87e1980a1383a7ce4b8870c3d5c..0aaf1692f60ce0de1fa91f20170287376d6a851c 100644 (file)
@@ -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.
 #
index 85534fccce611dd0978bfb63aeb54fd1eb9c25c1..88df0fdfc9aca3e0aee99275f05b113487b099da 100644 (file)
@@ -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