mirror of https://github.com/CGAL/cgal
Remove committed makefile, as it is useless, and buggy (generates a warning).
This commit is contained in:
parent
6749f8d0b2
commit
5a9d063a3c
|
|
@ -1,61 +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 = \
|
|
||||||
$(TESTSUITE_CXXFLAGS) \
|
|
||||||
$(EXTRA_FLAGS) \
|
|
||||||
$(CGAL_CXXFLAGS) \
|
|
||||||
$(DEBUG_OPT)
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
# linker flags
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
|
|
||||||
LIBPATH = \
|
|
||||||
$(TESTSUITE_LIBPATH) \
|
|
||||||
$(CGAL_LIBPATH)
|
|
||||||
|
|
||||||
LDFLAGS = \
|
|
||||||
$(TESTSUITE_LDFLAGS) \
|
|
||||||
$(CGAL_LDFLAGS)
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
# target entries
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
|
|
||||||
all: \
|
|
||||||
geomview_demo \
|
|
||||||
viewpoint2off
|
|
||||||
|
|
||||||
geomview_demo$(EXE_EXT): geomview_demo$(OBJ_EXT)
|
|
||||||
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)geomview_demo geomview_demo$(OBJ_EXT) $(LDFLAGS)
|
|
||||||
|
|
||||||
viewpoint2off$(EXE_EXT): viewpoint2off$(OBJ_EXT)
|
|
||||||
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)viewpoint2off viewpoint2off$(OBJ_EXT) $(LDFLAGS)
|
|
||||||
|
|
||||||
clean: \
|
|
||||||
geomview_demo.clean \
|
|
||||||
viewpoint2off.clean
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
# suffix rules
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
|
|
||||||
.cpp$(OBJ_EXT):
|
|
||||||
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<
|
|
||||||
|
|
||||||
.cpp$(OBJ_EXT):
|
|
||||||
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue