From: curt Date: Wed, 4 Nov 1998 23:01:41 +0000 (+0000) Subject: Changes to the automake/autoconf system to reduce the number of libraries X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=617ec6be214dca0582654464b8fe1abda8e5a8b4;p=flightgear.git Changes to the automake/autoconf system to reduce the number of libraries that are unnecessarily linked into the various executables. --- diff --git a/Makefile.am b/Makefile.am index 128a56d0d..9e4a4f8b8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,7 +9,10 @@ endif bin_PROGRAMS = est-epsilon gl-info test-mktime est_epsilon_SOURCES = est-epsilon.c +est_epsilon_LDADD = $(base_LIBS) gl_info_SOURCES = gl-info.c +gl_info_LDADD = $(opengl_LIBS) $(base_LIBS) test_mktime_SOURCES = test-mktime.cxx +test_mktime_LDADD = $(base_LIBS) \ No newline at end of file