# Created by the script create_makefile # This is the makefile for compiling a CGAL application. #---------------------------------------------------------------------# # include platform specific settings #---------------------------------------------------------------------# # CGAL_MAKEFILE = ENTER_YOUR_INCLUDE_MAKEFILE_HERE !include $(CGAL_MAKEFILE) #---------------------------------------------------------------------# # compiler flags #---------------------------------------------------------------------# CXXFLAGS = \ $(EXTRA_FLAGS) \ $(CGAL_CXXFLAGS) #---------------------------------------------------------------------# # linker flags #---------------------------------------------------------------------# LIBPATH = \ $(CGAL_LIBPATH) LDFLAGS = \ $(CGAL_LDFLAGS) #---------------------------------------------------------------------# # target entries #---------------------------------------------------------------------# all: \ example_Min_circle_2 \ example_Min_ellipse_2 example_Min_circle_2$(EXE_EXT): example_Min_circle_2$(OBJ_EXT) $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)example_Min_circle_2 example_Min_circle_2$(OBJ_EXT) $(LDFLAGS) 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_circle_2.clean \ example_Min_ellipse_2.clean #---------------------------------------------------------------------# # suffix rules #---------------------------------------------------------------------# .C$(OBJ_EXT): $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<