mirror of https://github.com/CGAL/cgal
updated/moved
This commit is contained in:
parent
55ab7c4303
commit
b00bbe4a1d
|
|
@ -38,9 +38,13 @@ all: \
|
|||
hds_prog_default \
|
||||
hds_prog_graph \
|
||||
hds_prog_graph2 \
|
||||
hds_prog_edge_iterator \
|
||||
hds_prog_halfedge_iterator \
|
||||
hds_prog_vector
|
||||
|
||||
hds_prog_edge_iterator$(EXE_EXT): hds_prog_edge_iterator$(OBJ_EXT)
|
||||
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)hds_prog_edge_iterator hds_prog_edge_iterator$(OBJ_EXT) $(LDFLAGS)
|
||||
|
||||
hds_prog_color$(EXE_EXT): hds_prog_color$(OBJ_EXT)
|
||||
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)hds_prog_color hds_prog_color$(OBJ_EXT) $(LDFLAGS)
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,51 @@
|
|||
# Created by the script create_makefile
|
||||
# This is the makefile for compiling a CGAL application.
|
||||
|
||||
#---------------------------------------------------------------------#
|
||||
# include platform specific settings
|
||||
#---------------------------------------------------------------------#
|
||||
# Choose the right include file from the <cgalroot>/make directory.
|
||||
|
||||
# CGAL_MAKEFILE = ENTER_YOUR_INCLUDE_MAKEFILE_HERE
|
||||
!include $(CGAL_MAKEFILE)
|
||||
|
||||
#---------------------------------------------------------------------#
|
||||
# compiler flags
|
||||
#---------------------------------------------------------------------#
|
||||
|
||||
CXXFLAGS = \
|
||||
$(CGAL_CXXFLAGS) \
|
||||
$(LONG_NAME_PROBLEM_CXXFLAGS) \
|
||||
$(DEBUG_OPT)
|
||||
|
||||
#---------------------------------------------------------------------#
|
||||
# linker flags
|
||||
#---------------------------------------------------------------------#
|
||||
|
||||
LIBPATH = \
|
||||
$(CGAL_LIBPATH)
|
||||
|
||||
LDFLAGS = \
|
||||
$(LONG_NAME_PROBLEM_LDFLAGS) \
|
||||
$(CGAL_LDFLAGS)
|
||||
|
||||
#---------------------------------------------------------------------#
|
||||
# target entries
|
||||
#---------------------------------------------------------------------#
|
||||
|
||||
all: \
|
||||
example_Min_ellipse_2$(EXE_EXT)
|
||||
|
||||
example_Min_ellipse_2$(EXE_EXT): example_Min_ellipse_2$(OBJ_EXT)
|
||||
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)example_Min_ellipse_2 example_Min_ellipse_2$(OBJ_EXT) $(LDFLAGS)
|
||||
|
||||
clean: \
|
||||
example_Min_ellipse_2.clean
|
||||
|
||||
#---------------------------------------------------------------------#
|
||||
# suffix rules
|
||||
#---------------------------------------------------------------------#
|
||||
|
||||
.C$(OBJ_EXT):
|
||||
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<
|
||||
|
||||
Loading…
Reference in New Issue