Lots of directory layout reorganization.
This commit is contained in:
parent
0b156394fa
commit
cf78794eaf
6 changed files with 22 additions and 18 deletions
|
@ -5,10 +5,10 @@ libClipper_a_SOURCES = clipper.cxx clipper.hxx
|
||||||
clipper_SOURCES = main.cxx
|
clipper_SOURCES = main.cxx
|
||||||
|
|
||||||
clipper_LDADD = $(top_builddir)/Tools/Clipper/libClipper.a \
|
clipper_LDADD = $(top_builddir)/Tools/Clipper/libClipper.a \
|
||||||
$(top_builddir)/Tools/Polygon/libPolygon.a \
|
$(top_builddir)/Tools/Lib/Polygon/libPolygon.a \
|
||||||
$(top_builddir)/Lib/Debug/libDebug.a \
|
$(top_builddir)/Lib/Debug/libDebug.a \
|
||||||
$(top_builddir)/Lib/Misc/libMisc.a \
|
$(top_builddir)/Lib/Misc/libMisc.a \
|
||||||
$(top_builddir)/Lib/zlib/libz.a \
|
$(top_builddir)/Lib/zlib/libz.a \
|
||||||
-lgfc -lgpc
|
-lgfc -lgpc
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Tools
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Tools/Lib
|
||||||
|
|
|
@ -30,13 +30,13 @@ deminfo_SOURCES = \
|
||||||
deminfo.cxx
|
deminfo.cxx
|
||||||
|
|
||||||
deminfo_LDADD = \
|
deminfo_LDADD = \
|
||||||
$(top_builddir)/Tools/DEM/libDEM.a \
|
$(top_builddir)/Tools/Lib/DEM/libDEM.a \
|
||||||
$(top_builddir)/Lib/Bucket/libBucket.a \
|
$(top_builddir)/Lib/Bucket/libBucket.a \
|
||||||
$(top_builddir)/Lib/Misc/libMisc.a \
|
$(top_builddir)/Lib/Misc/libMisc.a \
|
||||||
$(top_builddir)/Lib/zlib/libz.a \
|
$(top_builddir)/Lib/zlib/libz.a \
|
||||||
$(base_LIBS)
|
$(base_LIBS)
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Tools
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Tools/Lib
|
||||||
|
|
||||||
# We can't build this with "-O2" (optimization) since this causes a seg fault
|
# We can't build this with "-O2" (optimization) since this causes a seg fault
|
||||||
# I haven't found a way to strip this out of the CXXFLAGS, so I'm just
|
# I haven't found a way to strip this out of the CXXFLAGS, so I'm just
|
||||||
|
@ -46,6 +46,9 @@ CXXFLAGS = -g
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.6 1999/03/08 22:00:46 curt
|
||||||
|
# Lots of directory layout reorganization.
|
||||||
|
#
|
||||||
# Revision 1.5 1999/02/01 21:09:27 curt
|
# Revision 1.5 1999/02/01 21:09:27 curt
|
||||||
# Moving location of Lib/DEM/ to Tools/DEM/
|
# Moving location of Lib/DEM/ to Tools/DEM/
|
||||||
#
|
#
|
||||||
|
|
|
@ -31,13 +31,13 @@ fixnode_SOURCES = \
|
||||||
main.cxx
|
main.cxx
|
||||||
|
|
||||||
fixnode_LDADD = \
|
fixnode_LDADD = \
|
||||||
$(top_builddir)/Tools/DEM/libDEM.a \
|
$(top_builddir)/Tools/Lib/DEM/libDEM.a \
|
||||||
$(top_builddir)/Lib/Bucket/libBucket.a \
|
$(top_builddir)/Lib/Bucket/libBucket.a \
|
||||||
$(top_builddir)/Lib/Misc/libMisc.a \
|
$(top_builddir)/Lib/Misc/libMisc.a \
|
||||||
$(top_builddir)/Lib/zlib/libz.a \
|
$(top_builddir)/Lib/zlib/libz.a \
|
||||||
$(base_LIBS)
|
$(base_LIBS)
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Tools
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Tools/Lib
|
||||||
|
|
||||||
# We can't build this with "-O2" (optimization) since this causes a seg fault
|
# We can't build this with "-O2" (optimization) since this causes a seg fault
|
||||||
# I haven't found a way to strip this out of the CXXFLAGS, so I'm just
|
# I haven't found a way to strip this out of the CXXFLAGS, so I'm just
|
||||||
|
@ -47,6 +47,9 @@ CXXFLAGS = -g
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.9 1999/03/08 22:00:45 curt
|
||||||
|
# Lots of directory layout reorganization.
|
||||||
|
#
|
||||||
# Revision 1.8 1999/02/01 21:09:30 curt
|
# Revision 1.8 1999/02/01 21:09:30 curt
|
||||||
# Moving location of Lib/DEM/ to Tools/DEM/
|
# Moving location of Lib/DEM/ to Tools/DEM/
|
||||||
#
|
#
|
||||||
|
|
|
@ -33,18 +33,21 @@ genapts_SOURCES = \
|
||||||
point2d.cxx point2d.hxx
|
point2d.cxx point2d.hxx
|
||||||
|
|
||||||
genapts_LDADD = \
|
genapts_LDADD = \
|
||||||
$(top_builddir)/Tools/Polygon/libPolygon.a \
|
$(top_builddir)/Tools/Lib/Polygon/libPolygon.a \
|
||||||
$(top_builddir)/Lib/Bucket/libBucket.a \
|
$(top_builddir)/Lib/Bucket/libBucket.a \
|
||||||
$(top_builddir)/Lib/Debug/libDebug.a \
|
$(top_builddir)/Lib/Debug/libDebug.a \
|
||||||
$(top_builddir)/Lib/Misc/libMisc.a \
|
$(top_builddir)/Lib/Misc/libMisc.a \
|
||||||
$(top_builddir)/Lib/zlib/libz.a \
|
$(top_builddir)/Lib/zlib/libz.a \
|
||||||
$(base_LIBS)
|
$(base_LIBS)
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Tools
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Tools/Lib
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.6 1999/03/08 22:00:47 curt
|
||||||
|
# Lots of directory layout reorganization.
|
||||||
|
#
|
||||||
# Revision 1.5 1999/02/25 21:32:47 curt
|
# Revision 1.5 1999/02/25 21:32:47 curt
|
||||||
# Modified to adhere to new polygon naming convention, and also to read the
|
# Modified to adhere to new polygon naming convention, and also to read the
|
||||||
# new Robin Peel aiport format.
|
# new Robin Peel aiport format.
|
||||||
|
|
|
@ -3,7 +3,7 @@ bin_PROGRAMS = shape-decode
|
||||||
shape_decode_SOURCES = main.cxx shape.cxx shape.hxx
|
shape_decode_SOURCES = main.cxx shape.cxx shape.hxx
|
||||||
|
|
||||||
shape_decode_LDADD = \
|
shape_decode_LDADD = \
|
||||||
$(top_builddir)/Tools/Polygon/libPolygon.a \
|
$(top_builddir)/Tools/Lib/Polygon/libPolygon.a \
|
||||||
$(top_builddir)/Lib/Debug/libDebug.a \
|
$(top_builddir)/Lib/Debug/libDebug.a \
|
||||||
$(top_builddir)/Lib/Bucket/libBucket.a \
|
$(top_builddir)/Lib/Bucket/libBucket.a \
|
||||||
$(top_builddir)/Lib/Misc/libMisc.a \
|
$(top_builddir)/Lib/Misc/libMisc.a \
|
||||||
|
@ -11,4 +11,4 @@ shape_decode_LDADD = \
|
||||||
-lgfc -lgpc
|
-lgfc -lgpc
|
||||||
|
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Tools
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Tools/Lib
|
||||||
|
|
|
@ -1,20 +1,15 @@
|
||||||
EXTRA_DIST = process-dem.pl
|
EXTRA_DIST = process-dem.pl
|
||||||
|
|
||||||
SUBDIRS = \
|
SUBDIRS = \
|
||||||
DEM \
|
Lib \
|
||||||
|
Prep \
|
||||||
|
Utils \
|
||||||
Areas \
|
Areas \
|
||||||
AssemTris \
|
AssemTris \
|
||||||
DEM \
|
|
||||||
Polygon \
|
|
||||||
Clipper \
|
Clipper \
|
||||||
Dem2node \
|
Dem2node \
|
||||||
DemInfo \
|
|
||||||
DemRaw2ascii \
|
|
||||||
FixNode \
|
FixNode \
|
||||||
FixObj \
|
FixObj \
|
||||||
GenAirports \
|
|
||||||
Makedir \
|
|
||||||
ShapeFile \
|
|
||||||
SplitTris \
|
SplitTris \
|
||||||
Stripe_w \
|
Stripe_w \
|
||||||
Tri2obj \
|
Tri2obj \
|
||||||
|
|
Loading…
Reference in a new issue