]> git.mxchange.org Git - flightgear.git/commitdiff
Remove useless dependencies on plib and opengl libraries
authorfredb <fredb>
Sat, 6 Jan 2007 19:12:26 +0000 (19:12 +0000)
committerfredb <fredb>
Sat, 6 Jan 2007 19:12:26 +0000 (19:12 +0000)
src/FDM/YASim/Makefile.am

index 3d3e4ba51deb74097fe768ed598d1e865cfbab11..fb4afa07609d8fa2b5be0af8fa127cbd41f50a6a 100644 (file)
@@ -23,7 +23,7 @@ SHARED_SOURCE_FILES = \
         Model.cpp Model.hpp \
         PropEngine.cpp PropEngine.hpp \
         Propeller.cpp Propeller.hpp \
-       Engine.hpp \
+        Engine.hpp \
         PistonEngine.cpp PistonEngine.hpp \
         TurbineEngine.cpp TurbineEngine.hpp \
         RigidBody.cpp RigidBody.hpp \
@@ -45,9 +45,9 @@ noinst_PROGRAMS = proptest
 
 yasim_SOURCES = yasim-test.cpp $(SHARED_SOURCE_FILES)
 
-yasim_LDADD = -lsgxml -lsgprops -lsgdebug -lsgmisc -lsgstructure -lplibul -lplibsg $(opengl_LIBS) $(base_LIBS)
+yasim_LDADD = -lsgxml -lsgprops -lsgdebug -lsgmisc -lsgstructure $(base_LIBS)
 
 proptest_SOURCES = proptest.cpp $(SHARED_SOURCE_FILES)
-proptest_LDADD = -lsgxml -lsgprops -lsgdebug -lsgmisc -lsgstructure -lplibul -lplibsg $(opengl_LIBS) $(base_LIBS)
+proptest_LDADD = -lsgxml -lsgprops -lsgdebug -lsgmisc -lsgstructure $(base_LIBS)
 
 INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src