# 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 = ENTER_YOUR_INCLUDE_MAKEFILE_HERE include $(CGAL_MAKEFILE) #---------------------------------------------------------------------# # compiler flags #---------------------------------------------------------------------# CXXFLAGS = \ $(TESTSUITE_CXXFLAGS) \ $(EXTRA_FLAGS) \ -Iinclude \ -I../Kernel/include \ $(CGAL_CXXFLAGS) \ $(DEBUG_OPT) #---------------------------------------------------------------------# # linker flags #---------------------------------------------------------------------# LIBPATH = \ $(TESTSUITE_LIBPATH) \ $(CGAL_LIBPATH) LDFLAGS = \ $(TESTSUITE_LDFLAGS) \ $(CGAL_LDFLAGS) #---------------------------------------------------------------------# # target entries #---------------------------------------------------------------------# all: \ test_with_leda_kernel_2 test_with_leda_kernel_2$(EXE_EXT): test_with_leda_kernel_2$(OBJ_EXT) $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)test_with_leda_kernel_2 test_with_leda_kernel_2$(OBJ_EXT) $(LDFLAGS) clean: \ test_with_leda_kernel_2.clean #---------------------------------------------------------------------# # suffix rules #---------------------------------------------------------------------# .C$(OBJ_EXT): $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<