Removed libtool support.
This commit is contained in:
parent
d14e417497
commit
801ba133bd
7 changed files with 40 additions and 19 deletions
Areas
AssemTris
DemInfo
FixNode
FixObj
SplitTris
Tri2obj
|
@ -28,13 +28,16 @@ bin_PROGRAMS = areas
|
||||||
|
|
||||||
areas_SOURCES = area.cxx area.hxx main.cxx
|
areas_SOURCES = area.cxx area.hxx main.cxx
|
||||||
|
|
||||||
areas_LDADD = $(top_builddir)/Lib/Bucket/libBucket.la
|
areas_LDADD = $(top_builddir)/Lib/Bucket/libBucket.a
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.2 1998/07/30 23:49:18 curt
|
||||||
|
# Removed libtool support.
|
||||||
|
#
|
||||||
# Revision 1.1 1998/07/20 12:54:53 curt
|
# Revision 1.1 1998/07/20 12:54:53 curt
|
||||||
# Whoops, need to commit Makefile.am, not Makefile.
|
# Whoops, need to commit Makefile.am, not Makefile.
|
||||||
#
|
#
|
||||||
|
|
|
@ -29,13 +29,16 @@ bin_PROGRAMS = assemtris
|
||||||
assemtris_SOURCES = assemtris.c assemtris.h
|
assemtris_SOURCES = assemtris.c assemtris.h
|
||||||
|
|
||||||
assemtris_LDADD = \
|
assemtris_LDADD = \
|
||||||
$(top_builddir)/Lib/Bucket/libBucket.la
|
$(top_builddir)/Lib/Bucket/libBucket.a
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.3 1998/07/30 23:49:23 curt
|
||||||
|
# Removed libtool support.
|
||||||
|
#
|
||||||
# Revision 1.2 1998/04/14 02:25:59 curt
|
# Revision 1.2 1998/04/14 02:25:59 curt
|
||||||
# Code reorganizations. Added a Lib/ directory for more general libraries.
|
# Code reorganizations. Added a Lib/ directory for more general libraries.
|
||||||
#
|
#
|
||||||
|
|
|
@ -30,9 +30,9 @@ deminfo_SOURCES = \
|
||||||
deminfo.cxx
|
deminfo.cxx
|
||||||
|
|
||||||
deminfo_LDADD = \
|
deminfo_LDADD = \
|
||||||
$(top_builddir)/Lib/DEM/libDEM.la \
|
$(top_builddir)/Lib/DEM/libDEM.a \
|
||||||
$(top_builddir)/Lib/Bucket/libBucket.la \
|
$(top_builddir)/Lib/Bucket/libBucket.a \
|
||||||
$(top_builddir)/Lib/zlib/libz.la
|
$(top_builddir)/Lib/zlib/libz.a
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
||||||
|
|
||||||
|
@ -44,6 +44,9 @@ CXXFLAGS = -g
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.2 1998/07/30 23:49:24 curt
|
||||||
|
# Removed libtool support.
|
||||||
|
#
|
||||||
# Revision 1.1 1998/06/04 19:18:04 curt
|
# Revision 1.1 1998/06/04 19:18:04 curt
|
||||||
# Initial revision.
|
# Initial revision.
|
||||||
#
|
#
|
||||||
|
|
|
@ -32,9 +32,9 @@ fixnode_SOURCES = \
|
||||||
triload.cxx triload.hxx
|
triload.cxx triload.hxx
|
||||||
|
|
||||||
fixnode_LDADD = \
|
fixnode_LDADD = \
|
||||||
$(top_builddir)/Lib/DEM/libDEM.la \
|
$(top_builddir)/Lib/DEM/libDEM.a \
|
||||||
$(top_builddir)/Lib/Bucket/libBucket.la \
|
$(top_builddir)/Lib/Bucket/libBucket.a \
|
||||||
$(top_builddir)/Lib/zlib/libz.la
|
$(top_builddir)/Lib/zlib/libz.a
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
||||||
|
|
||||||
|
@ -46,6 +46,9 @@ CXXFLAGS = -g
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.4 1998/07/30 23:49:24 curt
|
||||||
|
# Removed libtool support.
|
||||||
|
#
|
||||||
# Revision 1.3 1998/04/18 04:02:54 curt
|
# Revision 1.3 1998/04/18 04:02:54 curt
|
||||||
# Added zlib support in placed and other misc. tweaks.
|
# Added zlib support in placed and other misc. tweaks.
|
||||||
#
|
#
|
||||||
|
|
|
@ -29,15 +29,18 @@ bin_PROGRAMS = fixobj
|
||||||
fixobj_SOURCES = main.cxx obj.cxx obj.hxx
|
fixobj_SOURCES = main.cxx obj.cxx obj.hxx
|
||||||
|
|
||||||
fixobj_LDADD = \
|
fixobj_LDADD = \
|
||||||
$(top_builddir)/Lib/Math/libMath.la \
|
$(top_builddir)/Lib/Math/libMath.a \
|
||||||
$(top_builddir)/Lib/Debug/libDebug.la \
|
$(top_builddir)/Lib/Debug/libDebug.a \
|
||||||
$(top_builddir)/Lib/zlib/libz.la
|
$(top_builddir)/Lib/zlib/libz.a
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.6 1998/07/30 23:49:25 curt
|
||||||
|
# Removed libtool support.
|
||||||
|
#
|
||||||
# Revision 1.5 1998/06/08 17:11:44 curt
|
# Revision 1.5 1998/06/08 17:11:44 curt
|
||||||
# Renamed *.[ch] to *.[ch]xx
|
# Renamed *.[ch] to *.[ch]xx
|
||||||
#
|
#
|
||||||
|
|
|
@ -29,16 +29,19 @@ bin_PROGRAMS = splittris
|
||||||
splittris_SOURCES = splittris.cxx splittris.hxx
|
splittris_SOURCES = splittris.cxx splittris.hxx
|
||||||
|
|
||||||
splittris_LDADD = \
|
splittris_LDADD = \
|
||||||
$(top_builddir)/Lib/Bucket/libBucket.la \
|
$(top_builddir)/Lib/Bucket/libBucket.a \
|
||||||
$(top_builddir)/Lib/Math/libMath.la \
|
$(top_builddir)/Lib/Math/libMath.a \
|
||||||
$(top_builddir)/Lib/Debug/libDebug.la \
|
$(top_builddir)/Lib/Debug/libDebug.a \
|
||||||
$(top_builddir)/Lib/zlib/libz.la
|
$(top_builddir)/Lib/zlib/libz.a
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.6 1998/07/30 23:49:26 curt
|
||||||
|
# Removed libtool support.
|
||||||
|
#
|
||||||
# Revision 1.5 1998/07/08 14:49:13 curt
|
# Revision 1.5 1998/07/08 14:49:13 curt
|
||||||
# tweaks.
|
# tweaks.
|
||||||
#
|
#
|
||||||
|
|
|
@ -29,16 +29,19 @@ bin_PROGRAMS = tri2obj
|
||||||
tri2obj_SOURCES = tri2obj.cxx tri2obj.hxx
|
tri2obj_SOURCES = tri2obj.cxx tri2obj.hxx
|
||||||
|
|
||||||
tri2obj_LDADD = \
|
tri2obj_LDADD = \
|
||||||
$(top_builddir)/Lib/Bucket/libBucket.la \
|
$(top_builddir)/Lib/Bucket/libBucket.a \
|
||||||
$(top_builddir)/Lib/Math/libMath.la \
|
$(top_builddir)/Lib/Math/libMath.a \
|
||||||
$(top_builddir)/Lib/Debug/libDebug.la \
|
$(top_builddir)/Lib/Debug/libDebug.a \
|
||||||
$(top_builddir)/Lib/zlib/libz.la
|
$(top_builddir)/Lib/zlib/libz.a
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.6 1998/07/30 23:49:26 curt
|
||||||
|
# Removed libtool support.
|
||||||
|
#
|
||||||
# Revision 1.5 1998/07/08 14:49:14 curt
|
# Revision 1.5 1998/07/08 14:49:14 curt
|
||||||
# tweaks.
|
# tweaks.
|
||||||
#
|
#
|
||||||
|
|
Loading…
Add table
Reference in a new issue