mirror of https://github.com/CGAL/cgal
Removed examples as explanations are missing and tutorial will do it
This commit is contained in:
parent
f8198287f8
commit
3d21f539b1
|
|
@ -1,10 +0,0 @@
|
||||||
include makefile
|
|
||||||
|
|
||||||
update_makefile:
|
|
||||||
@for d in ${DEMO_SUBDIRS}; do echo $$d; done | sort > .temp1
|
|
||||||
@find -name makefile -mindepth 2 | sed 's|/makefile||' | sort > .temp2
|
|
||||||
@if ! cmp -s .temp1 .temp2; then \
|
|
||||||
echo "### warning: Please update demos makefile."; \
|
|
||||||
echo "### Differences bellow:"; \
|
|
||||||
diff .temp1 .temp2; fi
|
|
||||||
@rm -f .temp1 .temp2
|
|
||||||
|
|
@ -1,57 +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 = -I../../include \
|
|
||||||
$(CGAL_CXXFLAGS) \
|
|
||||||
$(LONG_NAME_PROBLEM_CXXFLAGS) \
|
|
||||||
$(DEBUG_OPT)
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
# linker flags
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
|
|
||||||
LIBPATH = \
|
|
||||||
$(CGAL_LIBPATH)
|
|
||||||
|
|
||||||
LDFLAGS = \
|
|
||||||
$(LONG_NAME_PROBLEM_LDFLAGS) \
|
|
||||||
$(CGAL_QT_LDFLAGS)
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
# target entries
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
|
|
||||||
DEMO_SUBDIRS= \
|
|
||||||
./Examples
|
|
||||||
|
|
||||||
all:
|
|
||||||
badexit=""; \
|
|
||||||
for dir in $(DEMO_SUBDIRS); do \
|
|
||||||
(cd $$dir && make ) || badexit="yes";\
|
|
||||||
done; \
|
|
||||||
test -z "$$badexit"
|
|
||||||
|
|
||||||
$(DEMO_SUBDIRS):
|
|
||||||
cd $@ && make
|
|
||||||
|
|
||||||
clean:
|
|
||||||
for dir in ${DEMO_SUBDIRS}; do (cd $$dir && make clean); done
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
# suffix rules
|
|
||||||
#---------------------------------------------------------------------#
|
|
||||||
|
|
||||||
.C$(OBJ_EXT):
|
|
||||||
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue