<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/cbp2make/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/cbp2make/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 25 Jul 2023 07:13:03 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/cbp2make/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Mirai Computing</title><link>https://sourceforge.net/p/cbp2make/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,6 @@
-Welcome to your wiki!
-
-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
-
-The wiki uses [Markdown](/p/cbp2make/wiki/markdown_syntax/) syntax.
-
+Makefile generation tool for Code::Blocks IDE
+**GitHub** [https://github.com/mirai-computing/cbp2make](https://)
+**C::B Forum** [https://forums.codeblocks.org/index.php/topic,13675.0.html](https://)
+[[project_screenshots]]
 [[project_admins]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mirai Computing</dc:creator><pubDate>Tue, 25 Jul 2023 07:13:03 -0000</pubDate><guid>https://sourceforge.net922cdac8967596e2a4adf005b7f1ea62fb34e3dd</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/cbp2make/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="about"&gt;About&lt;/h1&gt;
&lt;p&gt;'''cbp2make''' is a stand-alone build tool that allows you to generate makefile(s) for GNU Make out of Code::Blocks IDE project or workspace file.&lt;br /&gt;
&lt;span&gt;[http://forums.codeblocks.org/index.php/topic,13675.0.html See also.]&lt;/span&gt;&lt;/p&gt;
&lt;h1 id="usage"&gt;Usage&lt;/h1&gt;
&lt;h2 id="create-makefile-for-a-single-project-or-workspace"&gt;Create makefile for a single project or workspace&lt;/h2&gt;
&lt;p&gt;Let's assume you have a project "my_project.cbp" and you need a makefile for this project.&lt;br /&gt;
In this simplest case all you have to do is:&lt;/p&gt;
&lt;p&gt;&lt;tt&gt;cbp2make -in my_project.cbp&lt;/tt&gt;&lt;/p&gt;
&lt;p&gt;Same thing applies to workspaces.&lt;/p&gt;
&lt;p&gt;&lt;tt&gt;cbp2make -in my_projects.workspace&lt;/tt&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;br /&gt;
Create makefile with another filename&lt;br /&gt;
-&lt;/p&gt;
&lt;p&gt;By default, '''cbp2make''' will append ".mak" extension to the project name to compose a filename for makefile.&lt;br /&gt;
If you want to change that, use following command:&lt;/p&gt;
&lt;p&gt;&lt;tt&gt;cbp2make -in my_project.cbp -out Makefile&lt;/tt&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;br /&gt;
Create makefile for another platform&lt;br /&gt;
-&lt;/p&gt;
&lt;p&gt;If you are working in GNU/Linux and you want to generate a makefile for Windows or the other way around, you can specify one or more platforms for which you need makefiles.&lt;/p&gt;
&lt;p&gt;&lt;tt&gt;&lt;br /&gt;
cbp2make -in my_project.cbp -windows&lt;br /&gt;&lt;br /&gt;
cbp2make -in my_project.cbp -unix&lt;br /&gt;&lt;br /&gt;
cbp2make -in my_project.cbp -unix -windows -mac&lt;br /&gt;&lt;br /&gt;
cbp2make -in my_project.cbp --all-os&lt;br /&gt;
&lt;/tt&gt;&lt;/p&gt;
&lt;p&gt;'''cbp2make''' will append ".unix" or ".windows" or ".mac" suffix to makefile name for each platform respectively.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;br /&gt;
Create makefile for multiple projects or workspaces&lt;br /&gt;
-&lt;/p&gt;
&lt;p&gt;If you have more than one independent project or workspace, you can process them at once, but you will need a text file containing the list of projects, e.g., ''projects.lst'', with one project filename per line.&lt;/p&gt;
&lt;blockquote&gt;&lt;tt&gt;
my_project.cbp&lt;br /&gt;
my_other_project.cbp
&lt;/tt&gt;&lt;/blockquote&gt;
&lt;p&gt;And then you can process them using command:&lt;/p&gt;
&lt;p&gt;&lt;tt&gt;cbp2make -list -in projects.lst&lt;/tt&gt;&lt;/p&gt;
&lt;h1 id="configuration"&gt;Configuration&lt;/h1&gt;
&lt;p&gt;Some installation- or project-specific options, primarily toolchain settings, can be saved to a configuration file.&lt;br /&gt;
By default ''(since rev.110)'', cbp2make does not save any settings to a configuration file unless the user explicitly specifies the &lt;tt&gt;"--config"&lt;/tt&gt; option.&lt;br /&gt;
A configuration file can be either global (stored in user profile / home directory) or local (stored in current directory).&lt;/p&gt;
&lt;p&gt;Please, keep in mind that since cbp2make is in early stage of development, an old configuration file may become incompatible with new tool version and it may be necessary to update it manually or initialize a new one.&lt;/p&gt;
&lt;h2 id="initialization"&gt;Initialization&lt;/h2&gt;
&lt;p&gt;&lt;tt&gt;cbp2make --config options --global&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;cbp2make --config options --local&lt;/tt&gt;&lt;/p&gt;
&lt;h1 id="later-use"&gt;Later use&lt;/h1&gt;
&lt;p&gt;When cbp2make is invoked, first it tries to load a local configuration file. If a local configuration is missing, next attempt will be to load a global one. If this attempt is not successful either, the default built-in configuration is used. Configuration lookup order can be overridden with &lt;tt&gt;"--local"&lt;/tt&gt; or &lt;tt&gt;"--global"&lt;/tt&gt; command line options. If one of options is supplied to cbp2make, non-specified configuration is not picked up even if the specified one is missing and non-specified do exists.&lt;/p&gt;
&lt;p&gt;''Default lookup order''&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;cbp2make -in project.cbp -out Makefile&lt;/tt&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;''Explicitly specified configuration''&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;cbp2make --local -in project.cbp -out Makefile&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;cbp2make --global -in project.cbp -out Makefile&lt;/tt&gt;&lt;/p&gt;
&lt;h2 id="command-line-syntax"&gt;Command line syntax&lt;/h2&gt;
&lt;p&gt;&lt;tt&gt;&lt;br /&gt;
        Generate makefile:&lt;br /&gt;
                cbp2make -in &amp;lt;project_file&amp;gt; [-cfg &amp;lt;configuration&amp;gt;] [-out &amp;lt;makefile&amp;gt;]&lt;br /&gt;
                         [-unix] [-windows] [-mac] [--all-os] [-targets "&amp;lt;target1&amp;gt;[,&amp;lt;target2&amp;gt;[, ...]]"]&lt;br /&gt;
                         [--flat-objects] [--flat-objpath] [--wrap-objects] [--wrap-options]&lt;br /&gt;
                         [--with-deps] [--keep-objdir] [--keep-outdir] [--target-case keep|lower|upper]&lt;br /&gt;
                cbp2make -list -in &amp;lt;project_file_list&amp;gt; [-cfg &amp;lt;configuration&amp;gt;]&lt;br /&gt;
                         [-unix] [-windows] [-mac] [--all-os] [-targets "&amp;lt;target1&amp;gt;[,&amp;lt;target2&amp;gt;[, ...]]"]&lt;br /&gt;
                         [--flat-objects] [--flat-objpath] [--wrap-objects] [--wrap-options]&lt;br /&gt;
                         [--with-deps] [--keep-objdir] [--keep-outdir] [--target-case keep|lower|upper]&lt;/tt&gt;&lt;/p&gt;&lt;tt&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;    &lt;span class="nx"&gt;Manage&lt;/span&gt; &lt;span class="nx"&gt;toolchains&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
            &lt;span class="nx"&gt;cbp2make&lt;/span&gt; &lt;span class="o"&gt;--&lt;/span&gt;&lt;span class="nx"&gt;config&lt;/span&gt; &lt;span class="nx"&gt;toolchain&lt;/span&gt; &lt;span class="o"&gt;--&lt;/span&gt;&lt;span class="nb"&gt;add&lt;/span&gt; &lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="err"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-unix&lt;/span&gt;&lt;span class="o"&gt;|-&lt;/span&gt;&lt;span class="nx"&gt;windows&lt;/span&gt;&lt;span class="o"&gt;|-&lt;/span&gt;&lt;span class="nx"&gt;mac&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; -chain &lt;span class="nt"&gt;&amp;lt;toolchain&amp;gt;&lt;/span&gt;
            cbp2make --config toolchain --remove \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-unix&lt;/span&gt;&lt;span class="o"&gt;|-&lt;/span&gt;&lt;span class="nx"&gt;windows&lt;/span&gt;&lt;span class="o"&gt;|-&lt;/span&gt;&lt;span class="nx"&gt;mac&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; -chain &lt;span class="nt"&gt;&amp;lt;toolchain&amp;gt;&lt;/span&gt;

    Manage build tools:
            cbp2make --config tool --add \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-unix&lt;/span&gt;&lt;span class="o"&gt;|-&lt;/span&gt;&lt;span class="nx"&gt;windows&lt;/span&gt;&lt;span class="o"&gt;|-&lt;/span&gt;&lt;span class="nx"&gt;mac&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; -chain &lt;span class="nt"&gt;&amp;lt;toolchain&amp;gt;&lt;/span&gt;
                     -tool &lt;span class="nt"&gt;&amp;lt;tool&amp;gt;&lt;/span&gt; -type &lt;span class="nt"&gt;&amp;lt;type&amp;gt;&lt;/span&gt; &lt;span class="nt"&gt;&amp;lt;tool&lt;/span&gt; &lt;span class="na"&gt;options&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
            cbp2make --config tool --remove \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-unix&lt;/span&gt;&lt;span class="o"&gt;|-&lt;/span&gt;&lt;span class="nx"&gt;windows&lt;/span&gt;&lt;span class="o"&gt;|-&lt;/span&gt;&lt;span class="nx"&gt;mac&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; -chain &lt;span class="nt"&gt;&amp;lt;toolchain&amp;gt;&lt;/span&gt;
                     -tool &lt;span class="nt"&gt;&amp;lt;tool&amp;gt;&lt;/span&gt;

    Tool types:      pp=preprocessor as=assembler cc=compiler rc=resource compiler
                     sl=static linker dl=dynamic linker el=executable linker
                     nl=native linker
    Tool options (common):
                     -desc &lt;span class="nt"&gt;&amp;lt;description&amp;gt;&lt;/span&gt; -program &lt;span class="nt"&gt;&amp;lt;executable&amp;gt;&lt;/span&gt; -command &lt;span class="nt"&gt;&amp;lt;command&lt;/span&gt;&lt;span class="na"&gt;_template&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                     -mkv &lt;span class="nt"&gt;&amp;lt;make&lt;/span&gt;&lt;span class="na"&gt;_variable&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt; -srcext &lt;span class="nt"&gt;&amp;lt;source&lt;/span&gt;&lt;span class="na"&gt;_extensions&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt; -outext &lt;span class="nt"&gt;&amp;lt;output&lt;/span&gt;&lt;span class="na"&gt;_extension&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                     -quotepath &lt;span class="nt"&gt;&amp;lt;yes&lt;/span&gt;&lt;span class="err"&gt;|&lt;/span&gt;&lt;span class="na"&gt;no&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt; -fullpath &lt;span class="nt"&gt;&amp;lt;yes&lt;/span&gt;&lt;span class="err"&gt;|&lt;/span&gt;&lt;span class="na"&gt;no&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt; -unixpath &lt;span class="nt"&gt;&amp;lt;yes&lt;/span&gt;&lt;span class="err"&gt;|&lt;/span&gt;&lt;span class="na"&gt;no&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    Tool options (compiler):
                     -incsw &lt;span class="nt"&gt;&amp;lt;include&lt;/span&gt;&lt;span class="na"&gt;_switch&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt; -defsw &lt;span class="nt"&gt;&amp;lt;define&lt;/span&gt;&lt;span class="na"&gt;_switch&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt; -deps &lt;span class="nt"&gt;&amp;lt;yes&lt;/span&gt;&lt;span class="err"&gt;|&lt;/span&gt;&lt;span class="na"&gt;no&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    Tool options (linker):
                     -ldsw &lt;span class="nt"&gt;&amp;lt;library&lt;/span&gt;&lt;span class="na"&gt;_dir_switch&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt; -llsw &lt;span class="nt"&gt;&amp;lt;link&lt;/span&gt;&lt;span class="na"&gt;_library_switch&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt; -lpfx &lt;span class="nt"&gt;&amp;lt;library&lt;/span&gt;&lt;span class="na"&gt;_prefix&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                     -lext &lt;span class="nt"&gt;&amp;lt;library&lt;/span&gt;&lt;span class="na"&gt;_extension&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt; -objext &lt;span class="nt"&gt;&amp;lt;object&lt;/span&gt;&lt;span class="na"&gt;_extension&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt; -lflat &lt;span class="nt"&gt;&amp;lt;yes&lt;/span&gt;&lt;span class="err"&gt;|&lt;/span&gt;&lt;span class="na"&gt;no&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;

    Manage platforms:
            cbp2make --config platform \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-unix&lt;/span&gt;&lt;span class="o"&gt;|-&lt;/span&gt;&lt;span class="nx"&gt;windows&lt;/span&gt;&lt;span class="o"&gt;|-&lt;/span&gt;&lt;span class="nx"&gt;mac&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-pwd&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;print_dir_command&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt;
                     \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-cd&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;change_dir_command&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-rm&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;remove_file_command&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt;
                     \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-rmf&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;remove_file_forced&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-rmd&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;remove_dir_command&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt;
                     \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-cp&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;copy_file_command&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-mv&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;move_file_command&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt;
                     \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-md&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;make_dir_command&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-mdf&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;make_dir_forced&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt;
                     \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-make&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;default_make_tool&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt;

    Manage global compiler variables:
            cbp2make --config variable --add \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-set&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;set_name&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; -name &lt;span class="nt"&gt;&amp;lt;var&lt;/span&gt;&lt;span class="na"&gt;_name&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                     \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-desc&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nb"&gt;description&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-field&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nb"&gt;field_name&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; -value &lt;span class="nt"&gt;&amp;lt;var&lt;/span&gt;&lt;span class="na"&gt;_value&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
            cbp2make --config variable --remove \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-set&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;set_name&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-name&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;var_name&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt;
                     \&lt;span class="cp"&gt;[&lt;/span&gt;&lt;span class="na"&gt;-field&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nb"&gt;field_name&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;\&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt;

    Manage options:
            cbp2make --config options --default-options "&lt;span class="nt"&gt;&amp;lt;options&amp;gt;&lt;/span&gt;"
            cbp2make --config show

    Common options:
            cbp2make --local        // use configuration from current directory
            cbp2make --global       // use configuration from home directory
            cbp2make --verbose      // show project information
            cbp2make --quiet        // hide all messages
            cbp2make --help         // display this message
            cbp2make --version      // display version information
&lt;/pre&gt;&lt;/div&gt;
&lt;/tt&gt;&lt;p&gt;&lt;tt&gt;&lt;/tt&gt;&lt;/p&gt;
&lt;h1 id="options"&gt;Options&lt;/h1&gt;
&lt;p&gt;''Makefile generation''&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;tt&gt;-in &amp;lt;project_file&amp;gt;&lt;/tt&gt; // specifies an input file or a list of files;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;-cfg &amp;lt;configuration&amp;gt;&lt;/tt&gt; // specifies a configuration file, see also "--local" and "--global" options;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;-out &amp;lt;makefile&amp;gt;&lt;/tt&gt; // specifies the name of a makefile or a list of makefiles;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;-unix&lt;/tt&gt; // enables Unix / Linux compatible makefile generation;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;-windows&lt;/tt&gt; // enables Windows compatible makefile generation;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;-mac&lt;/tt&gt; // enables Macintosh compatible makefile generation;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;--all-os&lt;/tt&gt; // enables all target platforms at once;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;-targets "&amp;lt;target1&amp;gt;[,&amp;lt;target2&amp;gt;[, ...]]"&lt;/tt&gt; // specifies the only build targets that a makefile will be made for;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;--flat-objects&lt;/tt&gt; // forces "flat" names for object files with limited character set;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;--flat-objpath&lt;/tt&gt; // forces "flat" paths for object files with no subdirectories;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;--wrap-objects&lt;/tt&gt; // allows to use multiline lists of objects which makes a makefile easier to read;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;--wrap-options&lt;/tt&gt; // allows to use multiline macros;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;--with-deps&lt;/tt&gt; // allows a built-in dependency scanner for C/C++ projects;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;--keep-objdir&lt;/tt&gt; // disables command that erase directories for object files in 'clean' target;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;--keep-outdir&lt;/tt&gt; // disables command that erase directory for an output binary file in 'clean' target;&lt;br /&gt;&lt;br /&gt;
&lt;tt&gt;--target-case [keep|lower|upper]&lt;/tt&gt; // specifies style for makefile targets;&lt;br /&gt;&lt;/p&gt;
&lt;h1 id="examples"&gt;Examples&lt;/h1&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mirai Computing</dc:creator><pubDate>Sat, 14 Mar 2015 20:33:08 -0000</pubDate><guid>https://sourceforge.netca610472cd53b65211b8df4ce1dd7eb406bb1277</guid></item><item><title>WikiPage Home modified by Mirai Computing</title><link>https://sourceforge.net/p/cbp2make/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/cbp2make/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;a href="/u/mirai-computing/"&gt;Mirai Computing&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
&lt;span class="download-button-511652aa34309d4b5bc8be64" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mirai Computing</dc:creator><pubDate>Sat, 09 Feb 2013 13:44:10 -0000</pubDate><guid>https://sourceforge.neta6664586139e299a125c8e86ddbbf0efb835d311</guid></item></channel></rss>