Default makefile is fine

This commit is contained in:
Laurent Saboret 2008-04-22 16:02:47 +00:00
parent ff1303f03b
commit f07cb9d43d
1 changed files with 0 additions and 67 deletions

View File

@ -1,67 +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 = \
-Iinclude \
-I../../include \
-I../../../../trunk/Principal_component_analysis/include/ \
-I../../../../trunk/Jet_fitting_3/include/ \
$(TESTSUITE_CXXFLAGS) \
$(EXTRA_FLAGS) \
$(CGAL_CXXFLAGS) \
$(LONG_NAME_PROBLEM_CXXFLAGS)
#---------------------------------------------------------------------#
# linker flags
#---------------------------------------------------------------------#
LIBPATH = \
$(TESTSUITE_LIBPATH) \
$(CGAL_LIBPATH)
LDFLAGS = \
$(TESTSUITE_LDFLAGS) \
$(LONG_NAME_PROBLEM_LDFLAGS) \
$(CGAL_LDFLAGS)
#---------------------------------------------------------------------#
# target entries
#---------------------------------------------------------------------#
all: \
normal_estimation_test$(EXE_EXT) \
poisson_reconstruction_test$(EXE_EXT)
normal_estimation_test$(EXE_EXT): normal_estimation_test$(OBJ_EXT)
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)normal_estimation_test normal_estimation_test$(OBJ_EXT) $(LDFLAGS)
poisson_reconstruction_test$(EXE_EXT): poisson_reconstruction_test$(OBJ_EXT)
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)poisson_reconstruction_test poisson_reconstruction_test$(OBJ_EXT) $(LDFLAGS)
clean: \
normal_estimation_test.clean \
poisson_reconstruction_test.clean
#---------------------------------------------------------------------#
# suffix rules
#---------------------------------------------------------------------#
.C$(OBJ_EXT):
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<
.cpp$(OBJ_EXT):
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<