Author Topic: new wizards break build : No rule to make target `at91m55800.h'  (Read 6912 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5529
as the title says
« Last Edit: April 06, 2008, 10:20:49 am by killerbot »

mariocup

  • Guest
Re: new wizards break build : No rule to make target `at91m55800.h'
« Reply #1 on: April 06, 2008, 11:01:38 am »
Hi killerbot,

sorry, I forgot to add the Makefiles. Will not happen again. :D

Bye,

Mario

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9723
Re: new wizards break build : No rule to make target `at91m55800.h'
« Reply #2 on: April 06, 2008, 11:45:33 am »
as the title says
Does this still apply? IMHO Biplab has fixed this during svn r4996-r4998.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7252
Re: new wizards break build : No rule to make target `at91m55800.h'
« Reply #3 on: April 06, 2008, 12:03:55 pm »
as the title says
Does this still apply? IMHO Biplab has fixed this during svn r4996-r4998.

Yes, wrong header in "Makefile.am".

This Patch
Code
--- codeblocks-1.0svn.orig/src/plugins/scriptedwizard/resources/arm/files/phyCORE-LPC2294/h/Makefile.am 2008-04-06 11:58:21.000000000 +0200
+++ codeblocks-1.0svn.work/src/plugins/scriptedwizard/resources/arm/files/phyCORE-LPC2294/h/Makefile.am 2008-04-06 11:56:52.000000000 +0200
@@ -1,3 +1,3 @@
 pkgdatadir = $(datadir)/@PACKAGE@/templates/wizard/arm/files/phyCORE-LPC2294/h^M
 ^M
-dist_pkgdata_DATA = at91m55800.h^M
+dist_pkgdata_DATA = lpc2294.h^M

should fix it, I just try to compile.

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7252
Re: new wizards break build : No rule to make target `at91m55800.h'
« Reply #4 on: April 06, 2008, 12:55:04 pm »
works no  :)

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Re: new wizards break build : No rule to make target `at91m55800.h'
« Reply #5 on: April 06, 2008, 01:12:40 pm »
Yes, wrong header in "Makefile.am".

This Patch
Code
--- codeblocks-1.0svn.orig/src/plugins/scriptedwizard/resources/arm/files/phyCORE-LPC2294/h/Makefile.am 2008-04-06 11:58:21.000000000 +0200
+++ codeblocks-1.0svn.work/src/plugins/scriptedwizard/resources/arm/files/phyCORE-LPC2294/h/Makefile.am 2008-04-06 11:56:52.000000000 +0200
@@ -1,3 +1,3 @@
 pkgdatadir = $(datadir)/@PACKAGE@/templates/wizard/arm/files/phyCORE-LPC2294/h^M
 ^M
-dist_pkgdata_DATA = at91m55800.h^M
+dist_pkgdata_DATA = lpc2294.h^M

should fix it, I just try to compile.

A Copy-Paste error. ;)

Thanks for pointing this. :)
Be a part of the solution, not a part of the problem.