It is possible to use (almost) any build system "unconverted" (see Code::Blocks and Makefiles (http://wiki.codeblocks.org/index.php?title=Code::Blocks_and_Makefiles)), however, it is generally better to fully transfer the build, allowing Code::Blocks to manage it (especially when the project is small, and therefor relatively easy to convert).
(Working under the assumption your project does not use any external libraries.) Use the wizard to create an empty console project. Click
Project->Add files... and select all of your
*.cpp and
*.h files. I would also suggest adding the dictionary text file simply for ease of access. Leave the makefile out (or even delete if you plan to never go back :)), unless you have decided not to fully convert.
See also:
- Creating a new project (http://wiki.codeblocks.org/index.php?title=Creating_a_new_project)
- I would like to compile a project using some non-standard libraries. (http://wiki.codeblocks.org/index.php?title=FAQ-Compiling_(general)#Q:_I_would_like_to_compile_a_project_using_some_non-standard_libraries._How_can_I_indicate_to_CodeBlocks_that_these_libraries_and_include_files_exist.3F)