<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.newlc.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>NewLC - Why do I get &amp;quot;no rule to make target&amp;quot; error when I make an empty project in Carbide C++? - Comments</title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c</link>
 <description>Comments for &quot;Why do I get &quot;no rule to make target&quot; error when I make an empty project in Carbide C++?&quot;</description>
 <language>en</language>
<item>
 <title>Re: Why do I get &quot;no rule to make target&quot; error ...</title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comment-45324</link>
 <description>&lt;p&gt;Ya sure Neil, I got your point, but I had already lost quite some time and it was not possible to change the version due to some reason. Missed the note regarding help, as I told,have already lost some time. But will surely try to get into that. Just wanted to save time for others. &lt;/p&gt;</description>
 <pubDate>Wed, 26 Mar 2008 13:26:31 +0100</pubDate>
 <dc:creator>SymbianReady</dc:creator>
 <guid isPermaLink="false">comment 45324 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Why do I get &quot;no rule to make target&quot; error when I </title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comment-45311</link>
 <description>&lt;p&gt;Well the Help file thing to work, You need UIDs from a range. That note is normally there in comments with the code regarding help file.&lt;/p&gt;

&lt;p&gt;Oh..one another thing. Read release notes of the SDK. It will clearly say something regarding the perl version...and believe me, that will cause problems at some point or the other and maybe you might miss looking into this aspect and spend more time on it. So precaution is better than cure in my books &lt;img src=&quot;/sites/all/modules/smileys/packs/example/wink.png&quot; title=&quot;Eye-wink&quot; alt=&quot;Eye-wink&quot; /&gt;&lt;/p&gt;</description>
 <pubDate>Wed, 26 Mar 2008 10:22:07 +0100</pubDate>
 <dc:creator>Symbian_Neil</dc:creator>
 <guid isPermaLink="false">comment 45311 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Why do I get &quot;no rule to make target&quot; error .........</title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comment-45303</link>
 <description>&lt;p&gt;I got the application working with some support of my friends. The main problem is with the Context Help that carbide provides, when we create a new project. Havn&#039;t got the exact idea of the problem but commenting the lines containing the help file details in the bld.inf file solved my build problem. Then you need to remove the code ragarding the help in the .cpp files as well. This solved my problem, hope it will help others too. Havn&#039;t changed the Perl version for this.&lt;/p&gt;

&lt;p&gt;good luck&lt;br /&gt;
Cheers!! &lt;/p&gt;</description>
 <pubDate>Wed, 26 Mar 2008 06:28:21 +0100</pubDate>
 <dc:creator>SymbianReady</dc:creator>
 <guid isPermaLink="false">comment 45303 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Why do I get &quot;no rule to make target&quot; error when I </title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comment-45279</link>
 <description>&lt;p&gt;I would suggest you to use Perl 5.6.1 build 635.&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
 <pubDate>Mon, 24 Mar 2008 13:03:59 +0100</pubDate>
 <dc:creator>Symbian_Neil</dc:creator>
 <guid isPermaLink="false">comment 45279 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Why do I get &quot;no rule to make target&quot; .........</title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comment-45276</link>
 <description>&lt;p&gt;While searching the help of Carbide C++ 1.2, I just saw this question.:&lt;/p&gt;

&lt;p&gt;---------------------&lt;/p&gt;

&lt;p&gt;Q2. My Console view says &quot;No rule to make target &#039;X&#039;&quot;.&lt;/p&gt;

&lt;p&gt;make -k clean all &lt;br /&gt;
make: *** No rule to make target &#039;clean&#039;.&lt;br /&gt;
make: *** No rule to make target &#039;all&#039;.&lt;/p&gt;

&lt;p&gt;By default, the make program looks for a file most commonly called &quot;Makefile&quot; or &quot;makefile&quot;. If it cannot find such a file in the working directory, or if that file is empty or the file does not contain rules for the command line goals (&quot;clean&quot; and &quot;all&quot; in this case), it will normally fail with an error message similar to those shown. &lt;/p&gt;

&lt;p&gt;If you already have a valid Makefile, you may need to change the working directory of your build. The default working directory for the build command is the project&#039;s root directory. You can change this by specifying an alternate Build Directory in the Make Project properties. Or, if your Makefile is named something else (eg. buildFile.mk), you can specify the name by setting the default Build command to make -f buildFile.mk.&lt;/p&gt;

&lt;p&gt;If you do not have a valid Makefile, create a new file named Makefile in the root directory. You can then add the contents of the sample Makefile (above), and modify it as appropriate.&lt;/p&gt;

&lt;p&gt;-----------------&lt;/p&gt;

&lt;p&gt;     Going to try this. Hope this would help. &lt;img src=&quot;/sites/all/modules/smileys/packs/example/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
 <pubDate>Mon, 24 Mar 2008 12:32:10 +0100</pubDate>
 <dc:creator>SymbianReady</dc:creator>
 <guid isPermaLink="false">comment 45276 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Why do I get &quot;no rule to make target&quot; error...</title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comment-45275</link>
 <description>&lt;p&gt;Hi MobileVisuals,&lt;/p&gt;

&lt;p&gt;     I can&#039;t change the IDE that very fast, and moreover Carbide C++ 1.2 has been there for quite a while now, people have been developing on that. There has to be some reason as to why is this error coming to a few and not all. There must be something in the installation or configurations.&lt;/p&gt;</description>
 <pubDate>Mon, 24 Mar 2008 12:21:14 +0100</pubDate>
 <dc:creator>SymbianReady</dc:creator>
 <guid isPermaLink="false">comment 45275 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Why do I get &quot;no rule to make target&quot; error when I make an e</title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comment-45274</link>
 <description>&lt;p&gt;You should try Carbide C++ 1.3 instead. That solved the problem for me.&lt;/p&gt;</description>
 <pubDate>Mon, 24 Mar 2008 10:23:38 +0100</pubDate>
 <dc:creator>MobileVisuals</dc:creator>
 <guid isPermaLink="false">comment 45274 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Why do I get &quot;no rule to make target&quot; error ...</title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comment-45271</link>
 <description>&lt;p&gt;Hey! I recently shifted from good old Codewarrior 3.1 to Carbide C++ 1.2, but I am also facing the same problem of &quot;no rule to make target&quot;. I am using Carbide C++ 1.2 with Perl 5.8.8.822&lt;/p&gt;

&lt;p&gt;     I am trying to create a new Symbian OS C++ 3rd edition  project using the Carbide wizard, but after finishing the steps in the wizard, when I try to build the project, it compiles with this &quot;no rule...&quot; error.&lt;/p&gt;

&lt;p&gt;    Any Hints...&lt;/p&gt;</description>
 <pubDate>Mon, 24 Mar 2008 09:56:39 +0100</pubDate>
 <dc:creator>SymbianReady</dc:creator>
 <guid isPermaLink="false">comment 45271 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Why do I get &quot;no rule to make target&quot; error when I make an e</title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comment-45240</link>
 <description>&lt;p&gt;This problem dissapeared when I installed the new version of Carbide (1.3).&lt;/p&gt;</description>
 <pubDate>Fri, 21 Mar 2008 17:19:13 +0100</pubDate>
 <dc:creator>MobileVisuals</dc:creator>
 <guid isPermaLink="false">comment 45240 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Why do I get &quot;no rule to make target&quot; error when I make an </title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comment-45224</link>
 <description>&lt;p&gt;&lt;div class=&quot;bb-quote&quot;&gt;&lt;blockquote class=&quot;bb-quote-body&quot;&gt;Check if you have the correct perl version in your system. Perl v5.6.1 is advised if you are using Carbide.c++&lt;/blockquote&gt;&lt;/div&gt;&lt;/p&gt;

&lt;p&gt;AFAIK, that requirement is of SDK and not carbide. I could stand corrected if I am wrong!!&lt;/p&gt;</description>
 <pubDate>Thu, 20 Mar 2008 12:11:48 +0100</pubDate>
 <dc:creator>Symbian_Neil</dc:creator>
 <guid isPermaLink="false">comment 45224 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Why do I get &quot;no rule to make target&quot; error when I make an e</title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comment-45218</link>
 <description>&lt;p&gt;Check if you have the correct perl version in your system.  Perl v5.6.1 is advised if you are using Carbide.c++&lt;/p&gt;</description>
 <pubDate>Thu, 20 Mar 2008 04:07:02 +0100</pubDate>
 <dc:creator>aniait</dc:creator>
 <guid isPermaLink="false">comment 45218 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Why do I get &quot;no rule to make target&quot; error when I make an e</title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comment-45124</link>
 <description>&lt;p&gt;HI,&lt;/p&gt;

&lt;p&gt;Try to clean and rebuild your application may be this will solve your problem.&lt;/p&gt;</description>
 <pubDate>Sat, 15 Mar 2008 06:08:26 +0100</pubDate>
 <dc:creator>RB_Sahu</dc:creator>
 <guid isPermaLink="false">comment 45124 at http://www.newlc.com</guid>
</item>
<item>
 <title>Why do I get &quot;no rule to make target&quot; error when I make an empty project in Carbide C++?</title>
 <link>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c</link>
 <description>&lt;p&gt;I have tried to make a screensaver project from Generic Symbian OS--&gt; empy project in Carbide C++. But everytime I get &quot;no rule to make target&quot; error from the beginning that I don&#039;t know how to get rid of. What can I do to get rid of this error? The console output is &lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.newlc.com/forum/why-do-i-get-no-rule-make-target-error-when-i-make-empty-project-carbide-c#comments</comments>
 <category domain="http://www.newlc.com/forums/symbian-c">Symbian C++</category>
 <pubDate>Fri, 14 Mar 2008 18:44:54 +0100</pubDate>
 <dc:creator>MobileVisuals</dc:creator>
 <guid isPermaLink="false">20501 at http://www.newlc.com</guid>
</item>
</channel>
</rss>
