# 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 /make directory. CGAL_MAKEFILE = /mnt/gmirror/ports/math/cgal/work/CGAL-3.1/make/makefile_i386_Darwin-8.0.1_c++-3.3.0 include $(CGAL_MAKEFILE) #---------------------------------------------------------------------# # compiler flags #---------------------------------------------------------------------# CXXFLAGS = \ $(TESTSUITE_CXXFLAGS) \ $(EXTRA_FLAGS) \ $(CGAL_CXXFLAGS) \ $(LONG_NAME_PROBLEM_CXXFLAGS) \ $(DEBUG_OPT) #---------------------------------------------------------------------# # linker flags #---------------------------------------------------------------------# LIBPATH = \ $(TESTSUITE_LIBPATH) \ $(CGAL_LIBPATH) LDFLAGS = \ $(TESTSUITE_LDFLAGS) \ $(LONG_NAME_PROBLEM_LDFLAGS) \ $(CGAL_LDFLAGS) #---------------------------------------------------------------------# # target entries #---------------------------------------------------------------------# all: \ all_furthest_neighbors_2_example$(EXE_EXT) \ extremal_polygon_2_example$(EXE_EXT) \ rectangular_p_center_2_example$(EXE_EXT) \ sorted_matrix_search_example$(EXE_EXT) all_furthest_neighbors_2_example$(EXE_EXT): all_furthest_neighbors_2_example$(OBJ_EXT) $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)all_furthest_neighbors_2_example all_furthest_neighbors_2_example$(OBJ_EXT) $(LDFLAGS) extremal_polygon_2_example$(EXE_EXT): extremal_polygon_2_example$(OBJ_EXT) $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)extremal_polygon_2_example extremal_polygon_2_example$(OBJ_EXT) $(LDFLAGS) rectangular_p_center_2_example$(EXE_EXT): rectangular_p_center_2_example$(OBJ_EXT) $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)rectangular_p_center_2_example rectangular_p_center_2_example$(OBJ_EXT) $(LDFLAGS) sorted_matrix_search_example$(EXE_EXT): sorted_matrix_search_example$(OBJ_EXT) $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)sorted_matrix_search_example sorted_matrix_search_example$(OBJ_EXT) $(LDFLAGS) clean: \ all_furthest_neighbors_2_example.clean \ extremal_polygon_2_example.clean \ rectangular_p_center_2_example.clean \ sorted_matrix_search_example.clean #---------------------------------------------------------------------# # suffix rules #---------------------------------------------------------------------# .C$(OBJ_EXT): $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<