diff --git a/Packages/Triangulation_2/demo/Triangulation_2/Makefilevc b/Packages/Triangulation_2/demo/Triangulation_2/Makefilevc new file mode 100644 index 00000000000..ac10831c711 --- /dev/null +++ b/Packages/Triangulation_2/demo/Triangulation_2/Makefilevc @@ -0,0 +1,50 @@ +# This is the makefile for compiling a CGAL application. + +#---------------------------------------------------------------------# +# include platform specific settings +#---------------------------------------------------------------------# +# Choose the right include file from the /make directory. + +CGAL_MAKEFILE = /prisme/CGAL/CGAL-2.1-I-30/make/makefile_i686_CYGWINNT-4.0-20.1_CL.EXE-12.00.8168 +include $(CGAL_MAKEFILE) + + + +#---------------------------------------------------------------------# +# compiler flags +#---------------------------------------------------------------------# + +CXXFLAGS = -I./include -I../../include \ + $(CGAL_CXXFLAGS) \ + $(LONG_NAME_PROBLEM_CXXFLAGS) \ + + +#---------------------------------------------------------------------# +# linker flags +#---------------------------------------------------------------------# + +LDFLAGS = $(CGAL_LDFLAGS) \ + $(LONG_NAME_PROBLEM_LDFLAGS) +WINDOW_LDFLAGS = $(CGAL_WINDOW_LDFLAGS) + +#---------------------------------------------------------------------# +# target entries +#---------------------------------------------------------------------# + + + +demo: demo.obj parse.obj + $(CGAL_CXX) -o demo demo.obj parse.obj $(WINDOW_LDFLAGS) + +clean: + - rm -rf *~ *.obj core tr + +realclean: clean + - rm -rf demo + +#---------------------------------------------------------------------# +# suffix rules +#---------------------------------------------------------------------# + +.C.obj: + $(CGAL_CXX) $(CXXFLAGS) -c $<