From: curt Date: Fri, 31 Oct 2003 21:15:43 +0000 (+0000) Subject: Fix an automake squawk. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=69f2597a0c30a4dccab0d985fdf7b022f06021f3;p=flightgear.git Fix an automake squawk. --- diff --git a/src/FDM/YASim/Makefile.am b/src/FDM/YASim/Makefile.am index 8cd1ab7b9..bfe0c96b9 100644 --- a/src/FDM/YASim/Makefile.am +++ b/src/FDM/YASim/Makefile.am @@ -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)