]> git.mxchange.org Git - flightgear.git/commitdiff
Fix an automake squawk.
authorcurt <curt>
Fri, 31 Oct 2003 21:15:43 +0000 (21:15 +0000)
committercurt <curt>
Fri, 31 Oct 2003 21:15:43 +0000 (21:15 +0000)
src/FDM/YASim/Makefile.am

index 8cd1ab7b962dd38f6743dd22b1ff4151b37597b1..bfe0c96b978f5ebe215a3ff100d24ee4481f35ba 100644 (file)
@@ -6,7 +6,7 @@
 # I think that it's permissible to list the same source files more
 # than once in a Makefile.am.  Hopefully this doesn't break anything.
 
-SHARED_SOURCES = \
+SHARED_SOURCE_FILES = \
         Airplane.cpp Airplane.hpp \
         Atmosphere.cpp Atmosphere.hpp \
         BodyEnvironment.hpp \
@@ -33,11 +33,11 @@ SHARED_SOURCES = \
 
 noinst_LIBRARIES = libYASim.a
 
-libYASim_a_SOURCES = YASim.cxx YASim.hxx $(SHARED_SOURCES)
+libYASim_a_SOURCES = YASim.cxx YASim.hxx $(SHARED_SOURCE_FILES)
 
 bin_PROGRAMS = yasim
 
-yasim_SOURCES = yasim-test.cpp $(SHARED_SOURCES)
+yasim_SOURCES = yasim-test.cpp $(SHARED_SOURCE_FILES)
 
 yasim_LDADD = -lsgxml -lsgprops -lsgdebug -lsgstructure  $(base_LIBS)