cgal/Old_Packages/wininst.old/examples/Min_sphere_d/makefile.mak

48 lines
1.5 KiB
Makefile

# 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: \
min_sphere_d_example$(EXE_EXT)
min_sphere_d_example$(EXE_EXT): min_sphere_d_example$(OBJ_EXT)
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)min_sphere_d_example min_sphere_d_example$(OBJ_EXT) $(LDFLAGS)
clean: \
min_sphere_d_example.clean
#---------------------------------------------------------------------#
# suffix rules
#---------------------------------------------------------------------#
.C$(OBJ_EXT):
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<