SlickEdit Community
SlickEdit Product Discussion => SlickEdit® => Topic started by: okania on November 16, 2006, 11:34:25 am
-
Hello,
I have problems using auto-generated Makefiles.
Slickedit generates a skeleton only and when running build I get
okania@jedox08:~/work/palo_engine/lib_ng_copy/ngsandbox$ make -f ngsandbox.mak all
g++ -g -o "Debug/ngSandbox"
g++: no input files
make: *** [Debug/ngSandbox] Error 1
I have added all relevant soure-Files to the project.
The Makefile contains instructions for general builds of .o files, the name of the excecutable etc.
but no concrete object-instructions.
-
Hello,
I have problems using auto-generated Makefiles.
Slickedit generates a skeleton only and when running build I get
okania@jedox08:~/work/palo_engine/lib_ng_copy/ngsandbox$ make -f ngsandbox.mak all
g++ -g -o "Debug/ngSandbox"
g++: no input files
make: *** [Debug/ngSandbox] Error 1
I have added all relevant soure-Files to the project.
The Makefile contains instructions for general builds of .o files, the name of the excecutable etc.
but no concrete object-instructions.
Could it be that you have not added any .cpp files to your project? If so you would get this error because the g++ command fails.