diff --git a/Packages/Qt_widget/demo/Qt_widget/basic/tutorial3/Makefile.local b/Packages/Qt_widget/demo/Qt_widget/basic/tutorial3/Makefile.local deleted file mode 100644 index 90f7967fe76..00000000000 --- a/Packages/Qt_widget/demo/Qt_widget/basic/tutorial3/Makefile.local +++ /dev/null @@ -1,56 +0,0 @@ -# Created by the script create_makefile -# This is the makefile for compiling a CGAL application. - -#---------------------------------------------------------------------# -# include platform specific settings -#---------------------------------------------------------------------# -# Choose the right include file from the /make directory. - -# CGAL_MAKEFILE = ENTER_YOUR_INCLUDE_MAKEFILE_HERE -CGAL_MAKEFILE = ~/CGAL-2.4-I-47/make/makefile_sparc_SunOS-5.6_g++-2.95 -include $(CGAL_MAKEFILE) - -#---------------------------------------------------------------------# -# compiler flags -#---------------------------------------------------------------------# - -CXXFLAGS = -I../../../../include/ \ - $(CGAL_CXXFLAGS) \ - $(LONG_NAME_PROBLEM_CXXFLAGS) \ - $(DEBUG_OPT) - -#---------------------------------------------------------------------# -# linker flags -#---------------------------------------------------------------------# - -LIBPATH = \ - $(CGAL_LIB_DIR) - -LDFLAGS = \ - $(LONG_NAME_PROBLEM_LDFLAGS) \ - $(CGAL_LDFLAGS) - -#---------------------------------------------------------------------# -# target entries -#---------------------------------------------------------------------# - -SOURCES = ../../../../src/CGALQt/Qt_widget.o \ - ../../../../src/CGALQt/Qt_widget_tool.o \ - ../../../../src/CGALQt/Qt_widget_view.o - -all: tut3$(EXE_EXT) - -tut3$(OBJ_EXT): tutorial3.C - $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) tutorial3.C - -tut3$(EXE_EXT): tut3$(OBJ_EXT) $(SOURCES) - $(CGAL_CXX) $(EXE_OPT)tutorial3 tutorial3$(OBJ_EXT) $(SOURCES) $(LDFLAGS) - -#clean: first.clean - -#---------------------------------------------------------------------# -# suffix rules -#---------------------------------------------------------------------# - -.C$(OBJ_EXT): - $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<