]> git.mxchange.org Git - simgear.git/commitdiff
Aligned sky with sun so dusk/dawn effects can be correct relative to the sun.
authorcurt <curt>
Mon, 22 Dec 1997 04:14:33 +0000 (04:14 +0000)
committercurt <curt>
Mon, 22 Dec 1997 04:14:33 +0000 (04:14 +0000)
Math/Makefile
Math/depend

index 05451fcfdc30c1528a0a768d2f83bdf1e4bfd64b..cb0510d831861940debaeb2573c5e05e5df0db81 100644 (file)
@@ -27,7 +27,7 @@
 TARGET = libMath.a
 
 CFILES = MAT3geom.c MAT3inv.c MAT3mat.c MAT3vec.c fg_geodesy.c fg_random.c \
-        polar.c
+        polar.c vector.c
 OFILES = $(CFILES:.c=.o)
 
 
@@ -78,9 +78,15 @@ fg_random.o:
 polar.o:
        $(CC) $(CFLAGS) -c polar.c -o $@
 
+vector.o:
+       $(CC) $(CFLAGS) -c vector.c -o $@
+
 
 #---------------------------------------------------------------------------
 # $Log$
+# Revision 1.13  1997/12/22 04:14:33  curt
+# Aligned sky with sun so dusk/dawn effects can be correct relative to the sun.
+#
 # Revision 1.12  1997/07/31 22:52:27  curt
 # Working on redoing internal coordinate systems & scenery transformations.
 #
index bfb41306013e5591ddddd06f8f77cae6da98a8a3..c6605e2000bbaafc698b1eec8268b40ce98d071b 100644 (file)
@@ -5,3 +5,4 @@ MAT3vec.o: MAT3vec.c mat3.h
 fg_geodesy.o: fg_geodesy.c fg_geodesy.h ../Include/constants.h
 fg_random.o: fg_random.c fg_random.h
 polar.o: polar.c polar.h ../Include/types.h ../Include/constants.h
+vector.o: vector.c vector.h ../Math/mat3.h