mirror of https://github.com/CGAL/cgal
Remove anoying makefile.
This commit is contained in:
parent
0cf7958c73
commit
f8858ea687
|
|
@ -1,56 +0,0 @@
|
||||||
# Created by the script cgal_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: \
|
|
||||||
incremental_hull_3_demo$(EXE_EXT) \
|
|
||||||
quickhull_3_demo$(EXE_EXT)
|
|
||||||
|
|
||||||
incremental_hull_3_demo$(EXE_EXT): incremental_hull_3_demo$(OBJ_EXT)
|
|
||||||
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)incremental_hull_3_demo incremental_hull_3_demo$(OBJ_EXT) $(LDFLAGS)
|
|
||||||
|
|
||||||
quickhull_3_demo$(EXE_EXT): quickhull_3_demo$(OBJ_EXT)
|
|
||||||
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)quickhull_3_demo quickhull_3_demo$(OBJ_EXT) $(LDFLAGS)
|
|
||||||
|
|
||||||
clean: \
|
|
||||||
incremental_hull_3_demo.clean \
|
|
||||||
quickhull_3_demo.clean
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
# suffix rules
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
|
|
||||||
.cpp$(OBJ_EXT):
|
|
||||||
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue