mirror of https://github.com/CGAL/cgal
Moved in makefile.
This commit is contained in:
parent
874f9dc291
commit
a0ee4157ef
|
|
@ -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 <cgalroot>/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) $<
|
||||
Loading…
Reference in New Issue