]> git.mxchange.org Git - simgear.git/blobdiff - Math/Makefile
Working on scenery transformations to enable us to fly fluidly over the
[simgear.git] / Math / Makefile
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.
 #