I need to explore open source software for softphones with video. There are ten or more such projects on the web and all of them come with makefiles. I have used GUI-based IDEs for many years including codeblocks for Linux and would not want to go back working from the command line and GDB.
The smallest project I could find is at
www.sipsak.org. I created a Console project sipsaktry for this and manually copied sipsak c-source and header files into the project directory. After some editing it compiled and ran fine under codeblocks. The binary executable ended up in the codeblocks default bin/Debug directory. That was not difficult but a bit tedious, so it may be more convenient to use the makefile that came with the sipsak distribution, i.e. makefile.am. Exactly how do I do this? (assuming the same output files as I used for the sipsaktry project).
I read a wiki about using makefiles with codeblocks
http://wiki.codeblocks.org/index.php?title=Code::Blocks_and_Makefiles. Towards the end of the wiki there is:
'One final remark. Once you have used a makefile, attempts to compile anything without a makefile result in a number of warnings. The only way I have found of solving this is to reinstall CB. If you need both perhaps it is possible to install 2 versions of CB.'
That sounds too bad to be true! Is it really true?
Ken