Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 30 additions & 1 deletion build/SFML/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,18 @@ PROJECTS = \
demos/bidir \
demos/multiTarget \
demos/rc \
demos/astar-map \
demos/suboptimal-map \
demos/STP \
demos/transit-routing-maps \
demos/gridabstraction \
demos/JPS \
demos/bb \
demos/reach \
demos/dh-place \
demos/bidirnecessary \
demos/GMX \
demos/inconsistency-graph \
papers/IBEX \
papers/DWA \
papers/BGS \
Expand Down Expand Up @@ -116,8 +128,25 @@ PROJECTS_ALL = \
demos/DFID \
demos/dijkstra \
demos/astar \
demos/bidir \
demos/idastar \
demos/fastmap \
demos/pancake \
demos/racetrack \
demos/bidir \
demos/multiTarget \
demos/rc \
demos/astar-map \
demos/suboptimal-map \
demos/STP \
demos/transit-routing-maps \
demos/gridabstraction \
demos/JPS \
demos/bb \
demos/reach \
demos/dh-place \
demos/bidirnecessary \
demos/GMX \
demos/inconsistency-graph \
apps/snakebird \
papers/DSDWA \
# papers/IBEX \
Expand Down
3 changes: 3 additions & 0 deletions build/SFML/demos/GMX/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include Makefile.prj.inc
include ../../Makefile.com.inc
include ../../Makefile.exe.inc
59 changes: 59 additions & 0 deletions build/SFML/demos/GMX/Makefile.prj.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
#-----------------------------------------------------------------------------
# GNU Makefile for static libraries: project dependent part
#
# $Id: Makefile.prj.inc,v 1.2 2006/10/20 20:20:15 emarkus Exp $
# $Source: /usr/cvsroot/project_hog/build/gmake/apps/sample/Makefile.prj.inc,v $
#-----------------------------------------------------------------------------

NAME = GMX
DBG_NAME = $(NAME)
REL_NAME = $(NAME)

ROOT = ../../../..
VPATH = $(ROOT)

DBG_OBJDIR = $(ROOT)/objs/$(NAME)/debug
REL_OBJDIR = $(ROOT)/objs/$(NAME)/release
DBG_BINDIR = $(ROOT)/bin/debug
REL_BINDIR = $(ROOT)/bin/release

PROJ_CXXFLAGS = -I$(ROOT)/absmapalgorithms -I$(ROOT)/graphalgorithms -I$(ROOT)/gui -I$(ROOT)/simulation -I$(ROOT)/environments -I$(ROOT)/mapalgorithms -I$(ROOT)/algorithms -I$(ROOT)/generic -I$(ROOT)/utils -I$(ROOT)/graph -I$(ROOT)/search

PROJ_DBG_CXXFLAGS = $(PROJ_CXXFLAGS)
PROJ_REL_CXXFLAGS = $(PROJ_CXXFLAGS)

PROJ_DBG_LNFLAGS = -L$(DBG_BINDIR)
PROJ_REL_LNFLAGS = -L$(REL_BINDIR)

PROJ_DBG_LIB = -lenvironments -lmapalgorithms -lalgorithms -lgraphalgorithms -lgui -lgraph -lutils
PROJ_REL_LIB = -lenvironments -lmapalgorithms -lalgorithms -lgraphalgorithms -lgui -lgraph -lutils

PROJ_DBG_DEP = \
$(DBG_BINDIR)/libutils.a \
$(DBG_BINDIR)/libgraph.a \
$(DBG_BINDIR)/libgui.a \
$(DBG_BINDIR)/libenvironments.a \
$(DBG_BINDIR)/libmapalgorithms.a \
$(DBG_BINDIR)/libgraphalgorithms.a \
$(DBG_BINDIR)/libalgorithms.a

PROJ_REL_DEP = \
$(REL_BINDIR)/libutils.a \
$(REL_BINDIR)/libgraph.a \
$(REL_BINDIR)/libgui.a \
$(REL_BINDIR)/libenvironments.a \
$(REL_BINDIR)/libmapalgorithms.a \
$(REL_BINDIR)/libgraphalgorithms.a \
$(REL_BINDIR)/libalgorithms.a

ifeq ("$(OPENGL)", "STUB")
PROJ_DBG_LIB += -lSTUB
PROJ_REL_LIB += -lSTUB
PROJ_DBG_DEP += $(DBG_BINDIR)/libSTUB.a
PROJ_REL_DEP += $(REL_BINDIR)/libSTUB.a
endif

default : all

SRC_CPP = \
demos/GMX/Driver.cpp
3 changes: 3 additions & 0 deletions build/SFML/demos/JPS/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include Makefile.prj.inc
include ../../Makefile.com.inc
include ../../Makefile.exe.inc
61 changes: 61 additions & 0 deletions build/SFML/demos/JPS/Makefile.prj.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#-----------------------------------------------------------------------------
# GNU Makefile for static libraries: project dependent part
#
# $Id: Makefile.prj.inc,v 1.2 2006/10/20 20:20:15 emarkus Exp $
# $Source: /usr/cvsroot/project_hog/build/gmake/apps/sample/Makefile.prj.inc,v $
#-----------------------------------------------------------------------------

NAME = JPS
DBG_NAME = $(NAME)
REL_NAME = $(NAME)

ROOT = ../../../..
VPATH = $(ROOT)

DBG_OBJDIR = $(ROOT)/objs/$(NAME)/debug
REL_OBJDIR = $(ROOT)/objs/$(NAME)/release
DBG_BINDIR = $(ROOT)/bin/debug
REL_BINDIR = $(ROOT)/bin/release

PROJ_CXXFLAGS = -I$(ROOT)/absmapalgorithms -I$(ROOT)/graphalgorithms -I$(ROOT)/gui -I$(ROOT)/simulation -I$(ROOT)/environments -I$(ROOT)/mapalgorithms -I$(ROOT)/algorithms -I$(ROOT)/generic -I$(ROOT)/utils -I$(ROOT)/graph -I$(ROOT)/search -I$(ROOT)/grids

PROJ_DBG_CXXFLAGS = $(PROJ_CXXFLAGS)
PROJ_REL_CXXFLAGS = $(PROJ_CXXFLAGS)

PROJ_DBG_LNFLAGS = -L$(DBG_BINDIR)
PROJ_REL_LNFLAGS = -L$(REL_BINDIR)

PROJ_DBG_LIB = -lenvironments -lmapalgorithms -lalgorithms -lgraphalgorithms -lgui -lgraph -lgrids -lutils
PROJ_REL_LIB = -lenvironments -lmapalgorithms -lalgorithms -lgraphalgorithms -lgui -lgraph -lgrids -lutils

PROJ_DBG_DEP = \
$(DBG_BINDIR)/libutils.a \
$(DBG_BINDIR)/libgraph.a \
$(DBG_BINDIR)/libgui.a \
$(DBG_BINDIR)/libgrids.a \
$(DBG_BINDIR)/libenvironments.a \
$(DBG_BINDIR)/libmapalgorithms.a \
$(DBG_BINDIR)/libgraphalgorithms.a \
$(DBG_BINDIR)/libalgorithms.a

PROJ_REL_DEP = \
$(REL_BINDIR)/libutils.a \
$(REL_BINDIR)/libgraph.a \
$(REL_BINDIR)/libgui.a \
$(REL_BINDIR)/libgrids.a \
$(REL_BINDIR)/libenvironments.a \
$(REL_BINDIR)/libmapalgorithms.a \
$(REL_BINDIR)/libgraphalgorithms.a \
$(REL_BINDIR)/libalgorithms.a

ifeq ("$(OPENGL)", "STUB")
PROJ_DBG_LIB += -lSTUB
PROJ_REL_LIB += -lSTUB
PROJ_DBG_DEP += $(DBG_BINDIR)/libSTUB.a
PROJ_REL_DEP += $(REL_BINDIR)/libSTUB.a
endif

default : all

SRC_CPP = \
demos/JPS/Driver.cpp
3 changes: 3 additions & 0 deletions build/SFML/demos/STP/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include Makefile.prj.inc
include ../../Makefile.com.inc
include ../../Makefile.exe.inc
61 changes: 61 additions & 0 deletions build/SFML/demos/STP/Makefile.prj.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#-----------------------------------------------------------------------------
# GNU Makefile for static libraries: project dependent part
#
# $Id: Makefile.prj.inc,v 1.2 2006/10/20 20:20:15 emarkus Exp $
# $Source: /usr/cvsroot/project_hog/build/gmake/apps/sample/Makefile.prj.inc,v $
#-----------------------------------------------------------------------------

NAME = stp
DBG_NAME = $(NAME)
REL_NAME = $(NAME)

ROOT = ../../../..
VPATH = $(ROOT)

DBG_OBJDIR = $(ROOT)/objs/$(NAME)/debug
REL_OBJDIR = $(ROOT)/objs/$(NAME)/release
DBG_BINDIR = $(ROOT)/bin/debug
REL_BINDIR = $(ROOT)/bin/release

PROJ_CXXFLAGS = -I$(ROOT)/absmapalgorithms -I$(ROOT)/graphalgorithms -I$(ROOT)/gui -I$(ROOT)/simulation -I$(ROOT)/environments -I$(ROOT)/mapalgorithms -I$(ROOT)/algorithms -I$(ROOT)/generic -I$(ROOT)/utils -I$(ROOT)/graph -I$(ROOT)/search -I$(ROOT)/envutil

PROJ_DBG_CXXFLAGS = $(PROJ_CXXFLAGS)
PROJ_REL_CXXFLAGS = $(PROJ_CXXFLAGS)

PROJ_DBG_LNFLAGS = -L$(DBG_BINDIR)
PROJ_REL_LNFLAGS = -L$(REL_BINDIR)

PROJ_DBG_LIB = -lenvironments -lmapalgorithms -lalgorithms -lgraphalgorithms -lgui -lgraph -lutils -lenvutil
PROJ_REL_LIB = -lenvironments -lmapalgorithms -lalgorithms -lgraphalgorithms -lgui -lgraph -lutils -lenvutil

PROJ_DBG_DEP = \
$(DBG_BINDIR)/libutils.a \
$(DBG_BINDIR)/libgraph.a \
$(DBG_BINDIR)/libgui.a \
$(DBG_BINDIR)/libenvironments.a \
$(DBG_BINDIR)/libmapalgorithms.a \
$(DBG_BINDIR)/libgraphalgorithms.a \
$(DBG_BINDIR)/libalgorithms.a \
$(DBG_BINDIR)/libenvutil.a

PROJ_REL_DEP = \
$(REL_BINDIR)/libutils.a \
$(REL_BINDIR)/libgraph.a \
$(REL_BINDIR)/libgui.a \
$(REL_BINDIR)/libenvironments.a \
$(REL_BINDIR)/libmapalgorithms.a \
$(REL_BINDIR)/libgraphalgorithms.a \
$(REL_BINDIR)/libalgorithms.a \
$(REL_BINDIR)/libenvutil.a

ifeq ("$(OPENGL)", "STUB")
PROJ_DBG_LIB += -lSTUB
PROJ_REL_LIB += -lSTUB
PROJ_DBG_DEP += $(DBG_BINDIR)/libSTUB.a
PROJ_REL_DEP += $(REL_BINDIR)/libSTUB.a
endif

default : all

SRC_CPP = \
demos/STP/Driver.cpp
3 changes: 3 additions & 0 deletions build/SFML/demos/astar-map/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include Makefile.prj.inc
include ../../Makefile.com.inc
include ../../Makefile.exe.inc
61 changes: 61 additions & 0 deletions build/SFML/demos/astar-map/Makefile.prj.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#-----------------------------------------------------------------------------
# GNU Makefile for static libraries: project dependent part
#
# $Id: Makefile.prj.inc,v 1.2 2006/10/20 20:20:15 emarkus Exp $
# $Source: /usr/cvsroot/project_hog/build/gmake/apps/sample/Makefile.prj.inc,v $
#-----------------------------------------------------------------------------

NAME = astar-map
DBG_NAME = $(NAME)
REL_NAME = $(NAME)

ROOT = ../../../..
VPATH = $(ROOT)

DBG_OBJDIR = $(ROOT)/objs/$(NAME)/debug
REL_OBJDIR = $(ROOT)/objs/$(NAME)/release
DBG_BINDIR = $(ROOT)/bin/debug
REL_BINDIR = $(ROOT)/bin/release

PROJ_CXXFLAGS = -I$(ROOT)/absmapalgorithms -I$(ROOT)/graphalgorithms -I$(ROOT)/gui -I$(ROOT)/simulation -I$(ROOT)/environments -I$(ROOT)/mapalgorithms -I$(ROOT)/algorithms -I$(ROOT)/generic -I$(ROOT)/utils -I$(ROOT)/graph -I$(ROOT)/search -I$(ROOT)/grids

PROJ_DBG_CXXFLAGS = $(PROJ_CXXFLAGS)
PROJ_REL_CXXFLAGS = $(PROJ_CXXFLAGS)

PROJ_DBG_LNFLAGS = -L$(DBG_BINDIR)
PROJ_REL_LNFLAGS = -L$(REL_BINDIR)

PROJ_DBG_LIB = -lenvironments -lmapalgorithms -lalgorithms -lgraphalgorithms -lgui -lgraph -lutils -lgrids
PROJ_REL_LIB = -lenvironments -lmapalgorithms -lalgorithms -lgraphalgorithms -lgui -lgraph -lutils -lgrids

PROJ_DBG_DEP = \
$(DBG_BINDIR)/libutils.a \
$(DBG_BINDIR)/libgraph.a \
$(DBG_BINDIR)/libgui.a \
$(DBG_BINDIR)/libenvironments.a \
$(DBG_BINDIR)/libmapalgorithms.a \
$(DBG_BINDIR)/libgraphalgorithms.a \
$(DBG_BINDIR)/libalgorithms.a \
$(DBG_BINDIR)/libgrids.a

PROJ_REL_DEP = \
$(REL_BINDIR)/libutils.a \
$(REL_BINDIR)/libgraph.a \
$(REL_BINDIR)/libgui.a \
$(REL_BINDIR)/libenvironments.a \
$(REL_BINDIR)/libmapalgorithms.a \
$(REL_BINDIR)/libgraphalgorithms.a \
$(REL_BINDIR)/libalgorithms.a \
$(REL_BINDIR)/libgrids.a

ifeq ("$(OPENGL)", "STUB")
PROJ_DBG_LIB += -lSTUB
PROJ_REL_LIB += -lSTUB
PROJ_DBG_DEP += $(DBG_BINDIR)/libSTUB.a
PROJ_REL_DEP += $(REL_BINDIR)/libSTUB.a
endif

default : all

SRC_CPP = \
demos/astar-map/Driver.cpp \
3 changes: 3 additions & 0 deletions build/SFML/demos/bb/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include Makefile.prj.inc
include ../../Makefile.com.inc
include ../../Makefile.exe.inc
61 changes: 61 additions & 0 deletions build/SFML/demos/bb/Makefile.prj.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#-----------------------------------------------------------------------------
# GNU Makefile for static libraries: project dependent part
#
# $Id: Makefile.prj.inc,v 1.2 2006/10/20 20:20:15 emarkus Exp $
# $Source: /usr/cvsroot/project_hog/build/gmake/apps/sample/Makefile.prj.inc,v $
#-----------------------------------------------------------------------------

NAME = bb
DBG_NAME = $(NAME)
REL_NAME = $(NAME)

ROOT = ../../../..
VPATH = $(ROOT)

DBG_OBJDIR = $(ROOT)/objs/$(NAME)/debug
REL_OBJDIR = $(ROOT)/objs/$(NAME)/release
DBG_BINDIR = $(ROOT)/bin/debug
REL_BINDIR = $(ROOT)/bin/release

PROJ_CXXFLAGS = -I$(ROOT)/absmapalgorithms -I$(ROOT)/graphalgorithms -I$(ROOT)/gui -I$(ROOT)/simulation -I$(ROOT)/environments -I$(ROOT)/mapalgorithms -I$(ROOT)/algorithms -I$(ROOT)/generic -I$(ROOT)/utils -I$(ROOT)/graph -I$(ROOT)/search -I$(ROOT)/grids

PROJ_DBG_CXXFLAGS = $(PROJ_CXXFLAGS)
PROJ_REL_CXXFLAGS = $(PROJ_CXXFLAGS)

PROJ_DBG_LNFLAGS = -L$(DBG_BINDIR)
PROJ_REL_LNFLAGS = -L$(REL_BINDIR)

PROJ_DBG_LIB = -lenvironments -lmapalgorithms -lalgorithms -lgraphalgorithms -lgui -lgraph -lgrids -lutils
PROJ_REL_LIB = -lenvironments -lmapalgorithms -lalgorithms -lgraphalgorithms -lgui -lgraph -lgrids -lutils

PROJ_DBG_DEP = \
$(DBG_BINDIR)/libutils.a \
$(DBG_BINDIR)/libgraph.a \
$(DBG_BINDIR)/libgui.a \
$(DBG_BINDIR)/libgrids.a \
$(DBG_BINDIR)/libenvironments.a \
$(DBG_BINDIR)/libmapalgorithms.a \
$(DBG_BINDIR)/libgraphalgorithms.a \
$(DBG_BINDIR)/libalgorithms.a

PROJ_REL_DEP = \
$(REL_BINDIR)/libutils.a \
$(REL_BINDIR)/libgraph.a \
$(REL_BINDIR)/libgui.a \
$(REL_BINDIR)/libgrids.a \
$(REL_BINDIR)/libenvironments.a \
$(REL_BINDIR)/libmapalgorithms.a \
$(REL_BINDIR)/libgraphalgorithms.a \
$(REL_BINDIR)/libalgorithms.a

ifeq ("$(OPENGL)", "STUB")
PROJ_DBG_LIB += -lSTUB
PROJ_REL_LIB += -lSTUB
PROJ_DBG_DEP += $(DBG_BINDIR)/libSTUB.a
PROJ_REL_DEP += $(REL_BINDIR)/libSTUB.a
endif

default : all

SRC_CPP = \
demos/bb/Driver.cpp
3 changes: 3 additions & 0 deletions build/SFML/demos/bidirnecessary/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include Makefile.prj.inc
include ../../Makefile.com.inc
include ../../Makefile.exe.inc
Loading