PDA

View Full Version : Import custom makefiles into KDevelop prj



zlatko
14th January 2006, 16:25
I have c+= app with custom makefiles. I try import it in Kdevelop project. But when try start build i have next errors:


gcc -o db.o -c -Wall -g -O0 -DDEBUG -I/usr/include -I/usr/local/include -I./ -I../../common
gcc: No input files specified


Yes i understand that at the end of gcc line must be *.cpp file, but he dont wont includ there.
How can i solve the problem?

jacek
14th January 2006, 20:13
Maybe there something that Makefile that depends on the current directory or environment variables?

zlatko
16th January 2006, 09:14
hm...i dont think that. I run makefile from the same directorry and it execute exellent:(

i think problem in differnce between make and gmake,becouse if i try type in my directory gmake i have the same errors as in KDevelop IDE

jacek
16th January 2006, 18:05
i think problem in differnce between make and gmake,becouse if i try type in my directory gmake i have the same errors as in KDevelop IDE
You can set the path to make executable in the project settings.

zlatko
17th January 2006, 12:12
yes if i type in buid options --> name of make executable 'make' it worked
big thanks!