1
0
Fork 0

Changes to the automake/autoconf system to reduce the number of libraries

that are unnecessarily linked into the various executables.
This commit is contained in:
curt 1998-11-04 23:01:43 +00:00
parent 535282bd23
commit 66f4bab7a0
13 changed files with 61 additions and 10 deletions

View file

@ -28,13 +28,19 @@ bin_PROGRAMS = areas
areas_SOURCES = area.cxx area.hxx main.cxx
areas_LDADD = $(top_builddir)/Lib/Bucket/libBucket.a
areas_LDADD = \
$(top_builddir)/Lib/Bucket/libBucket.a \
$(base_LIBS)
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
#---------------------------------------------------------------------------
# $Log$
# Revision 1.3 1998/11/04 23:01:43 curt
# Changes to the automake/autoconf system to reduce the number of libraries
# that are unnecessarily linked into the various executables.
#
# Revision 1.2 1998/07/30 23:49:18 curt
# Removed libtool support.
#

View file

@ -29,13 +29,18 @@ bin_PROGRAMS = assemtris
assemtris_SOURCES = assemtris.cxx assemtris.hxx
assemtris_LDADD = \
$(top_builddir)/Lib/Bucket/libBucket.a
$(top_builddir)/Lib/Bucket/libBucket.a \
$(base_LIBS)
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
#---------------------------------------------------------------------------
# $Log$
# Revision 1.5 1998/11/04 23:01:45 curt
# Changes to the automake/autoconf system to reduce the number of libraries
# that are unnecessarily linked into the various executables.
#
# Revision 1.4 1998/09/25 19:35:25 curt
# Renamed assemtris.[ch] to assemtris.[ch]xx
#

View file

@ -33,7 +33,8 @@ deminfo_LDADD = \
$(top_builddir)/Lib/DEM/libDEM.a \
$(top_builddir)/Lib/Bucket/libBucket.a \
$(top_builddir)/Lib/Misc/libMisc.a \
$(top_builddir)/Lib/zlib/libz.a
$(top_builddir)/Lib/zlib/libz.a \
$(base_LIBS)
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
@ -45,6 +46,10 @@ CXXFLAGS = -g
#---------------------------------------------------------------------------
# $Log$
# Revision 1.4 1998/11/04 23:01:48 curt
# Changes to the automake/autoconf system to reduce the number of libraries
# that are unnecessarily linked into the various executables.
#
# Revision 1.3 1998/09/19 18:01:21 curt
# Support for changes to libDEM.a
#

View file

@ -28,13 +28,17 @@ bin_PROGRAMS = raw2ascii
raw2ascii_SOURCES = main.c rawdem.c rawdem.h
raw2ascii_LDADD =
raw2ascii_LDADD = $(base_LIBS)
INCLUDES +=
#---------------------------------------------------------------------------
# $Log$
# Revision 1.3 1998/11/04 23:01:50 curt
# Changes to the automake/autoconf system to reduce the number of libraries
# that are unnecessarily linked into the various executables.
#
# Revision 1.2 1998/04/24 00:44:04 curt
# Added zlib support.
#

View file

@ -34,7 +34,8 @@ fixnode_LDADD = \
$(top_builddir)/Lib/DEM/libDEM.a \
$(top_builddir)/Lib/Bucket/libBucket.a \
$(top_builddir)/Lib/Misc/libMisc.a \
$(top_builddir)/Lib/zlib/libz.a
$(top_builddir)/Lib/zlib/libz.a \
$(base_LIBS)
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
@ -46,6 +47,10 @@ CXXFLAGS = -g
#---------------------------------------------------------------------------
# $Log$
# Revision 1.7 1998/11/04 23:01:51 curt
# Changes to the automake/autoconf system to reduce the number of libraries
# that are unnecessarily linked into the various executables.
#
# Revision 1.6 1998/09/19 20:43:50 curt
# C++-ified and STL-ified the code. Combined triload.* and fixnode.* into
# a single file.

View file

@ -31,13 +31,18 @@ fixobj_SOURCES = main.cxx obj.cxx obj.hxx
fixobj_LDADD = \
$(top_builddir)/Lib/Math/libMath.a \
$(top_builddir)/Lib/Debug/libDebug.a \
$(top_builddir)/Lib/zlib/libz.a
$(top_builddir)/Lib/zlib/libz.a \
$(base_LIBS)
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
#---------------------------------------------------------------------------
# $Log$
# Revision 1.7 1998/11/04 23:01:53 curt
# Changes to the automake/autoconf system to reduce the number of libraries
# that are unnecessarily linked into the various executables.
#
# Revision 1.6 1998/07/30 23:49:25 curt
# Removed libtool support.
#

View file

@ -34,13 +34,18 @@ genapts_SOURCES = \
genapts_LDADD = \
$(top_builddir)/Lib/Bucket/libBucket.a \
$(top_builddir)/Lib/zlib/libz.a
$(top_builddir)/Lib/zlib/libz.a \
$(base_LIBS)
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
#---------------------------------------------------------------------------
# $Log$
# Revision 1.3 1998/11/04 23:01:54 curt
# Changes to the automake/autoconf system to reduce the number of libraries
# that are unnecessarily linked into the various executables.
#
# Revision 1.2 1998/09/04 23:04:47 curt
# Beginning of convex hull genereration routine.
#

View file

@ -2,6 +2,8 @@ bin_PROGRAMS = makedir
makedir_SOURCES = makedir.cxx
makedir_LDADD = $(top_builddir)/Lib/Bucket/libBucket.a
makedir_LDADD = \
$(top_builddir)/Lib/Bucket/libBucket.a \
$(base_LIBS)
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib

View file

@ -33,13 +33,18 @@ splittris_LDADD = \
$(top_builddir)/Lib/Math/libMath.a \
$(top_builddir)/Lib/Debug/libDebug.a \
$(top_builddir)/Lib/Misc/libMisc.a \
$(top_builddir)/Lib/zlib/libz.a
$(top_builddir)/Lib/zlib/libz.a \
$(base_LIBS)
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
#---------------------------------------------------------------------------
# $Log$
# Revision 1.8 1998/11/04 23:01:57 curt
# Changes to the automake/autoconf system to reduce the number of libraries
# that are unnecessarily linked into the various executables.
#
# Revision 1.7 1998/10/18 01:17:25 curt
# Point3D tweaks.
#

View file

@ -27,3 +27,4 @@ strips_SOURCES = \
triangulate.h triangulatex.h \
util.c util.h
strips_LDADD = $(base_LIBS)

View file

@ -24,3 +24,4 @@ strips_SOURCES = \
triangulate.h triangulatex.h \
util.c util.h
strips_LDADD = $(base_LIBS)

View file

@ -32,13 +32,18 @@ tri2obj_LDADD = \
$(top_builddir)/Lib/Bucket/libBucket.a \
$(top_builddir)/Lib/Math/libMath.a \
$(top_builddir)/Lib/Debug/libDebug.a \
$(top_builddir)/Lib/zlib/libz.a
$(top_builddir)/Lib/zlib/libz.a \
$(base_LIBS)
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
#---------------------------------------------------------------------------
# $Log$
# Revision 1.7 1998/11/04 23:02:02 curt
# Changes to the automake/autoconf system to reduce the number of libraries
# that are unnecessarily linked into the various executables.
#
# Revision 1.6 1998/07/30 23:49:26 curt
# Removed libtool support.
#

View file

@ -15,4 +15,6 @@ bin_PROGRAMS = triangle # showme
triangle_SOURCES = triangle.c triangle.h
triangle_LDADD = $(base_LIBS)
# showme_SOURCES = showme.c