Skip to Content.
Sympa Menu

cgal-discuss - RE: [cgal-discuss] linking problem

Subject: CGAL users discussion list

List archive

RE: [cgal-discuss] linking problem


Chronological Thread 
  • From: "Nimrod Rubinstein" <>
  • To: <>
  • Subject: RE: [cgal-discuss] linking problem
  • Date: Mon, 21 Jan 2008 11:39:05 +0200

Ok,

So this is what I did:

#---------------------------------------------------------------------#
# target entries
#---------------------------------------------------------------------#

all: Epitopia$(EXE_EXT)


Scan$(OBJ_EXT): Scan.cpp
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) Scan.cpp

svm_classify$(OBJ_EXT):svm_classify.cpp
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) svm_classify.cpp

Epitopia$(OBJ_EXT):Epitopia.cpp
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) Epitopia.cpp

Epitopia$(EXE_EXT): Epitopia$(OBJ_EXT) Scan$(OBJ_EXT)
svm_classify$(OBJ_EXT)

$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)Epitopia Epitopia$(OBJ_EXT) Scan$(OBJ_EXT)
svm_classify$(OBJ_EXT) $(LDFLAGS)

But I get the following error:
*** target pattern contains no `%'. Stop.

Any idea?

-----Original Message-----
From: Joachim Reichel
[mailto:]

Sent: Monday, January 21, 2008 9:23 AM
To:

Subject: Re: [cgal-discuss] linking problem

Hi,

> Scan$(OBJ_EXT)\
> svm_classify$(OBJ_EXT)\

you should omit the backslash in the last line and add one in the already
existing line (or put everything in one line).

Regards,
Joachim
--
You are currently subscribed to cgal-discuss.
To unsubscribe or access the archives, go to
https://lists-sop.inria.fr/wws/info/cgal-discuss



Archive powered by MHonArc 2.6.16.

Top of Page