This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Undefined References


On Nov 30, 2007 7:26 PM, Michael Sullivan <michael@espersunited.com> wrote:
> I'm having trouble building my project.  This is my first project I've
> worked on that uses make, so I'm having a lot of problems with it.
> Here's my Makefile:
...

Without even looking in detail at the source I see that the following
line is a compile line and should not have anything but the source
being compiled:

> battle.o: battle.cpp
>         reset; $(CC) $(CFLAGS) -c battle.cpp character.o $(LIBS); rm *~

Try changing to:

battle.o: battle.cpp
         reset; $(CC) $(CFLAGS) -c battle.cpp; rm *~

and see what happens.

-Tom

Tom Browder
Niceville, Florida
USA


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]