mirror of https://github.com/CGAL/cgal
The makefile for tutorial1
This commit is contained in:
parent
ad5c3d1e14
commit
f65d87a50c
|
|
@ -7,7 +7,7 @@
|
|||
# Choose the right include file from the <cgalroot>/make directory.
|
||||
|
||||
# CGAL_MAKEFILE = ENTER_YOUR_INCLUDE_MAKEFILE_HERE
|
||||
CGAL_MAKEFILE = ~/CGAL-2.4-I-47/makefile_sparc_SunOS-5.6_g++-2.95
|
||||
CGAL_MAKEFILE = ~/CGAL-2.4-I-47/make/makefile_sparc_SunOS-5.6_g++-2.95
|
||||
include $(CGAL_MAKEFILE)
|
||||
|
||||
#---------------------------------------------------------------------#
|
||||
|
|
@ -34,15 +34,16 @@ LDFLAGS = \
|
|||
# target entries
|
||||
#---------------------------------------------------------------------#
|
||||
|
||||
SOURCES = ../../../../src/Qt_widget/Qt_widget.o ../../../../src/Qt_widget_tool.o
|
||||
SOURCES = ../../../../src/Qt_widget/Qt_widget.o \
|
||||
../../../../src/Qt_widget/Qt_widget_tool.o
|
||||
|
||||
all: first$(EXE_EXT)
|
||||
all: tut1$(EXE_EXT)
|
||||
|
||||
tut1$(OBJ_EXT): tutorial1.C
|
||||
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) tutorial1.C
|
||||
|
||||
tut1$(EXE_EXT): tut1$(OBJ_EXT) $(SOURCES)
|
||||
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)tutorial1 tut1$(OBJ_EXT) $(SOURCES) $(LDFLAGS)
|
||||
$(CGAL_CXX) $(EXE_OPT)tutorial1 tutorial1$(OBJ_EXT) $(SOURCES) $(LDFLAGS)
|
||||
|
||||
#clean: first.clean
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue