Author Topic: Auto-Generated Makefile Linux  (Read 4833 times)

okania

  • Community Member
  • Posts: 22
  • Hero Points: 0
Auto-Generated Makefile Linux
« 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.



emanuel

  • Junior Community Member
  • Posts: 2
  • Hero Points: 0
Re: Auto-Generated Makefile Linux
« Reply #1 on: December 16, 2006, 12:12:19 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.




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.