<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic make: *** No rule to make target '..error with FRDM-K82F in Kinetis Design Studio</title>
    <link>https://community.nxp.com/t5/Kinetis-Design-Studio/make-No-rule-to-make-target-error-with-FRDM-K82F/m-p/551185#M7066</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working hard to meet the deadline for &lt;A href="https://www.hackster.io/challenges/KinetisFlexIO" title="https://www.hackster.io/challenges/KinetisFlexIO"&gt;Flex Your Mind with Kinetis FlexIO - Hackster.io&lt;/A&gt; &lt;/P&gt;&lt;P&gt;I followed the steps &lt;A href="http://www.nxp.com/products/software-and-tools/run-time-software/kinetis-software-and-tools/ides-for-kinetis-mcus/freescale-freedom-development-platform-for-kinetis-k82-k81-and-k80-mcus:FRDM-K82F?tab=In-Depth_Tab&amp;amp;tid=van/frdm-k82f/startnow" title="http://www.nxp.com/products/software-and-tools/run-time-software/kinetis-software-and-tools/ides-for-kinetis-mcus/freescale-freedom-development-platform-for-kinetis-k82-k81-and-k80-mcus:FRDM-K82F?tab=In-Depth_Tab&amp;amp;tid=van/frdm-k82f/startnow"&gt;FRDM-K82F|Freedom Development Platform|Kinetis MCUs|NXP&lt;/A&gt; &lt;/P&gt;&lt;P&gt;and thought I was getting there when at the last step Step 4 I used the KSDK-Project-Generator&lt;/P&gt;&lt;P&gt;(ver 2.1 at the time of writing this post).&lt;/P&gt;&lt;P&gt;the projects gets generated&lt;/P&gt;&lt;P&gt;I import it from File&amp;gt;Import (in KDS ver 3.2)&lt;/P&gt;&lt;P&gt;Now I a using KSDK1.3.0Standalone (as this is a version for which the project gen works)&lt;/P&gt;&lt;P&gt;I get this screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="error2b.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/21557i752E3C9BFA65C12F/image-size/large?v=v2&amp;amp;px=999" role="button" title="error2b.jpg" alt="error2b.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I changed the code in main.c&lt;/P&gt;&lt;P&gt;and added&lt;/P&gt;&lt;P&gt; &lt;CODE&gt; &lt;SPAN class="control"&gt;volatile int&lt;/SPAN&gt; &lt;SPAN class="instruction"&gt;delay;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; // Configure board specific pin muxing&lt;BR /&gt; &lt;SPAN class="instruction"&gt;hardware_init();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; // Initialize the UART terminal&lt;BR /&gt; &lt;SPAN class="instruction"&gt;dbg_uart_init();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="instruction"&gt;PRINTF("&lt;/SPAN&gt;&lt;SPAN class="string"&gt;\r\nRunning the myProject project.\n&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;");&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; // Enable GPIO port for LED1&lt;BR /&gt; &lt;SPAN class="instruction"&gt;LED1_EN;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="control"&gt;for&lt;/SPAN&gt; &lt;SPAN class="instruction"&gt;(;;)&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="instruction"&gt;{&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="tabC"&gt;&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;LED1_ON;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="tabC"&gt;&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;delay = 5000000;&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="tabC"&gt;&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;while(delay--);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="tabC"&gt;&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;LED1_OFF;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="tabC"&gt;&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;delay = 5000000;&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="tabC"&gt;&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;while(delay--);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="instruction"&gt;}&lt;/SPAN&gt; &lt;/CODE&gt; &lt;/P&gt;&lt;P&gt;When I build the project I get the error&lt;/P&gt;&lt;P&gt;make: *** No rule to make target '../../../../../../lib/ksdk_platform_lib/kds/K82F25615/debug/libksdk_platform.a', needed by 'mp3_MK82FN256VLL15.elf'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I do a debug I get the error&lt;/P&gt;&lt;P&gt;Program file does not exist&lt;/P&gt;&lt;P&gt;C:\Freescale\KSDK1.3.0Standalone\examples\frdmk82f\user_apps\mp3\kds\debug\mp3_MK82FN256VLL15.elf not found&lt;/P&gt;&lt;P&gt;C:\Freescale\KSDK1.3.0Standalone\examples\frdmk82f\user_apps\mp3\kds\debug\mp3_MK82FN256VLL15.elf not found&lt;/P&gt;&lt;P&gt;C:\Freescale\KSDK1.3.0Standalone\examples\frdmk82f\user_apps\mp3\kds\debug\mp3_MK82FN256VLL15.elf not found&lt;/P&gt;&lt;P&gt;Then I got a useful post by &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/dereksnell"&gt;dereksnell&lt;/A&gt;​&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/327481"&gt;No Rule to Make Target error&lt;/A&gt; &lt;/P&gt;&lt;P&gt;I followed all the steps did a Project clean etc&lt;/P&gt;&lt;P&gt;then retried a build&lt;/P&gt;&lt;P&gt;Yet I am at a dead end&lt;/P&gt;&lt;P&gt;With about 14 days to go for the end of the contest so I do not know if I would be able to make it :smileysad:&lt;/P&gt;&lt;P&gt;Has anyone else experienced this ? Can anyone help me with this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Having said that I must add that the FRDM-K82F is a wonderful board with a lot of promise. Every time I plug it in and tinker with it I get to learn something new.&lt;/P&gt;&lt;P&gt;Once I get ahead of this road block I would surely b creating projects,tutorials etc to help others so that the learning curve for others is reduced&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Jun 2016 12:37:38 GMT</pubDate>
    <dc:creator>alz190</dc:creator>
    <dc:date>2016-06-20T12:37:38Z</dc:date>
    <item>
      <title>make: *** No rule to make target '..error with FRDM-K82F</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/make-No-rule-to-make-target-error-with-FRDM-K82F/m-p/551185#M7066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working hard to meet the deadline for &lt;A href="https://www.hackster.io/challenges/KinetisFlexIO" title="https://www.hackster.io/challenges/KinetisFlexIO"&gt;Flex Your Mind with Kinetis FlexIO - Hackster.io&lt;/A&gt; &lt;/P&gt;&lt;P&gt;I followed the steps &lt;A href="http://www.nxp.com/products/software-and-tools/run-time-software/kinetis-software-and-tools/ides-for-kinetis-mcus/freescale-freedom-development-platform-for-kinetis-k82-k81-and-k80-mcus:FRDM-K82F?tab=In-Depth_Tab&amp;amp;tid=van/frdm-k82f/startnow" title="http://www.nxp.com/products/software-and-tools/run-time-software/kinetis-software-and-tools/ides-for-kinetis-mcus/freescale-freedom-development-platform-for-kinetis-k82-k81-and-k80-mcus:FRDM-K82F?tab=In-Depth_Tab&amp;amp;tid=van/frdm-k82f/startnow"&gt;FRDM-K82F|Freedom Development Platform|Kinetis MCUs|NXP&lt;/A&gt; &lt;/P&gt;&lt;P&gt;and thought I was getting there when at the last step Step 4 I used the KSDK-Project-Generator&lt;/P&gt;&lt;P&gt;(ver 2.1 at the time of writing this post).&lt;/P&gt;&lt;P&gt;the projects gets generated&lt;/P&gt;&lt;P&gt;I import it from File&amp;gt;Import (in KDS ver 3.2)&lt;/P&gt;&lt;P&gt;Now I a using KSDK1.3.0Standalone (as this is a version for which the project gen works)&lt;/P&gt;&lt;P&gt;I get this screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="error2b.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/21557i752E3C9BFA65C12F/image-size/large?v=v2&amp;amp;px=999" role="button" title="error2b.jpg" alt="error2b.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I changed the code in main.c&lt;/P&gt;&lt;P&gt;and added&lt;/P&gt;&lt;P&gt; &lt;CODE&gt; &lt;SPAN class="control"&gt;volatile int&lt;/SPAN&gt; &lt;SPAN class="instruction"&gt;delay;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; // Configure board specific pin muxing&lt;BR /&gt; &lt;SPAN class="instruction"&gt;hardware_init();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; // Initialize the UART terminal&lt;BR /&gt; &lt;SPAN class="instruction"&gt;dbg_uart_init();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="instruction"&gt;PRINTF("&lt;/SPAN&gt;&lt;SPAN class="string"&gt;\r\nRunning the myProject project.\n&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;");&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; // Enable GPIO port for LED1&lt;BR /&gt; &lt;SPAN class="instruction"&gt;LED1_EN;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="control"&gt;for&lt;/SPAN&gt; &lt;SPAN class="instruction"&gt;(;;)&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="instruction"&gt;{&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="tabC"&gt;&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;LED1_ON;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="tabC"&gt;&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;delay = 5000000;&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="tabC"&gt;&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;while(delay--);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="tabC"&gt;&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;LED1_OFF;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="tabC"&gt;&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;delay = 5000000;&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="tabC"&gt;&lt;/SPAN&gt;&lt;SPAN class="instruction"&gt;while(delay--);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN class="instruction"&gt;}&lt;/SPAN&gt; &lt;/CODE&gt; &lt;/P&gt;&lt;P&gt;When I build the project I get the error&lt;/P&gt;&lt;P&gt;make: *** No rule to make target '../../../../../../lib/ksdk_platform_lib/kds/K82F25615/debug/libksdk_platform.a', needed by 'mp3_MK82FN256VLL15.elf'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I do a debug I get the error&lt;/P&gt;&lt;P&gt;Program file does not exist&lt;/P&gt;&lt;P&gt;C:\Freescale\KSDK1.3.0Standalone\examples\frdmk82f\user_apps\mp3\kds\debug\mp3_MK82FN256VLL15.elf not found&lt;/P&gt;&lt;P&gt;C:\Freescale\KSDK1.3.0Standalone\examples\frdmk82f\user_apps\mp3\kds\debug\mp3_MK82FN256VLL15.elf not found&lt;/P&gt;&lt;P&gt;C:\Freescale\KSDK1.3.0Standalone\examples\frdmk82f\user_apps\mp3\kds\debug\mp3_MK82FN256VLL15.elf not found&lt;/P&gt;&lt;P&gt;Then I got a useful post by &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/dereksnell"&gt;dereksnell&lt;/A&gt;​&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/327481"&gt;No Rule to Make Target error&lt;/A&gt; &lt;/P&gt;&lt;P&gt;I followed all the steps did a Project clean etc&lt;/P&gt;&lt;P&gt;then retried a build&lt;/P&gt;&lt;P&gt;Yet I am at a dead end&lt;/P&gt;&lt;P&gt;With about 14 days to go for the end of the contest so I do not know if I would be able to make it :smileysad:&lt;/P&gt;&lt;P&gt;Has anyone else experienced this ? Can anyone help me with this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Having said that I must add that the FRDM-K82F is a wonderful board with a lot of promise. Every time I plug it in and tinker with it I get to learn something new.&lt;/P&gt;&lt;P&gt;Once I get ahead of this road block I would surely b creating projects,tutorials etc to help others so that the learning curve for others is reduced&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 12:37:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/make-No-rule-to-make-target-error-with-FRDM-K82F/m-p/551185#M7066</guid>
      <dc:creator>alz190</dc:creator>
      <dc:date>2016-06-20T12:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: make: *** No rule to make target '..error with FRDM-K82F</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/make-No-rule-to-make-target-error-with-FRDM-K82F/m-p/551186#M7067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ALok,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error message "&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;No rule to make target '../../../../../../lib/ksdk_platform_lib/kds/K82F25615/debug/libksdk_platform.a'&lt;/SPAN&gt;" means the library file &lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;libksdk_platform.a is missing, and that is likely because it was not built.&amp;nbsp; You should be able to import the library project into KDS, located at &lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;C:\Freescale\KSDK1.3.0Standalone\lib\ksdk_platform_lib\kds\K82F25615.&amp;nbsp; Once you build that, KDS will generate the &lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;libksdk_platform.a library file.&amp;nbsp; And then you can build your &lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;mp3_MK82FN256VLL15 application project.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;You can also refer to the KSDK Getting Started guide installed with KSDK at &amp;lt;KSDK Installation path&amp;gt;\doc\Getting Started with Kinetis SDK (KSDK) v.1.3.pdf.&amp;nbsp; It includes the details steps for using KDS to build the KSDK library and application projects.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 16:18:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/make-No-rule-to-make-target-error-with-FRDM-K82F/m-p/551186#M7067</guid>
      <dc:creator>dereksnell</dc:creator>
      <dc:date>2016-06-20T16:18:37Z</dc:date>
    </item>
  </channel>
</rss>

