]> git.mxchange.org Git - flightgear.git/commitdiff
Changes to the automake/autoconf system to reduce the number of libraries
authorcurt <curt>
Wed, 4 Nov 1998 23:01:41 +0000 (23:01 +0000)
committercurt <curt>
Wed, 4 Nov 1998 23:01:41 +0000 (23:01 +0000)
that are unnecessarily linked into the various executables.

Makefile.am

index 128a56d0d34dfe46938e7f1bc04c3e7a29f18220..9e4a4f8b8d07f8a9e438de74172b49bdebf7e8bf 100644 (file)
@@ -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