make error / g++

S

sandwich_eater

I get this error when running a make file...

$ make -f TestMain.mak
MAKE Version 5.2 Copyright (c) 1987, 2000 Borland
g++ -o TestMain TestMain.o M.o S.o N.o
G__~1: M.o: No such file or directory
G__~1: S.o: No such file or directory
G__~1: N.o: No such file or directory

** error 1 ** deleting TestMain

the make file is...

TestMain : TestMain.o
g++ -o TestMain TestMain.o M.o S.o N.o
TestMain.o : TestMain.cpp
g++ -c TestMain.cpp
N.o : N.cpp
g++ -c N.cpp
M.o : M.cpp
g++ -c M.cpp
S.o : S.cpp
g++ -c S.cpp
 
H

Howard

I get this error when running a make file...

$ make -f TestMain.mak
MAKE Version 5.2 Copyright (c) 1987, 2000 Borland
g++ -o TestMain TestMain.o M.o S.o N.o
G__~1: M.o: No such file or directory
G__~1: S.o: No such file or directory
G__~1: N.o: No such file or directory

** error 1 ** deleting TestMain

You'll have to ask in a Borland newsgroup. Problems with specific
compilers, especially as they relate to projects/makefiles/etc. are not
related to the C++ language, and are off-topic here.

-Howard
 
?

=?iso-8859-1?q?Stephan_Br=F6nnimann?=

I get this error when running a make file...

$ make -f TestMain.mak
MAKE Version 5.2 Copyright (c) 1987, 2000 Borland
g++ -o TestMain TestMain.o M.o S.o N.o
G__~1: M.o: No such file or directory
G__~1: S.o: No such file or directory
G__~1: N.o: No such file or directory

** error 1 ** deleting TestMain

the make file is...

TestMain : TestMain.o
g++ -o TestMain TestMain.o M.o S.o N.o
TestMain.o : TestMain.cpp
g++ -c TestMain.cpp
N.o : N.cpp
g++ -c N.cpp
M.o : M.cpp
g++ -c M.cpp
S.o : S.cpp
g++ -c S.cpp

Off-topic though
Read the documentation for make. In your particular case the problem
are
the dependencies for the target TestMain, you don't specify it needs
M.o N.o and S.o.

regards, Stephan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,430
Messages
2,571,676
Members
48,796
Latest member
Greg L.

Latest Threads

Top