<?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 Re: Imake/make migrating 11iv1 to 11iv2 in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056187#M93923</link>
    <description>getcwd isn't in the Makefile.&lt;BR /&gt;make: getcwd: : No such file or directory&lt;BR /&gt;It comes from make bin.&lt;BR /&gt;&lt;BR /&gt;Which make were you using when you got this error?&lt;BR /&gt;&lt;BR /&gt;&amp;gt;getcwd is a C function&lt;BR /&gt;&lt;BR /&gt;Yes, I know what getcwd(3) does.  I found it strange that make(1) would mention it, so I assumed it was from your makefile.&lt;BR /&gt;&lt;BR /&gt;For getcwd(3) to get that errno, it would imply that the directory path back to the mount point was broken.  I would expect that to be a one time problem, not continual.  What does "/usr/bin/pwd" show?</description>
    <pubDate>Wed, 04 Jul 2007 04:04:56 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2007-07-04T04:04:56Z</dc:date>
    <item>
      <title>Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056179#M93915</link>
      <description>Hello everyone,&lt;BR /&gt;I'm trying to compile a code from 11iv1 to v2.&lt;BR /&gt;It uses Imake then make in a configure file&lt;BR /&gt;------------configure--------------------------&lt;BR /&gt;-------------------&lt;BR /&gt;#!/bin/csh&lt;BR /&gt;unsetenv IMAKEINCLUDE&lt;BR /&gt;set SYSTEM=hppa11.00-hp-hpux&lt;BR /&gt;echo "Configuring for " $SYSTEM&lt;BR /&gt;imake -DConfig=$SYSTEM -T "IBSImake.tmpl" -I./config -I/bin/imake&lt;BR /&gt;/bin/make -r Makefiles&lt;BR /&gt;------------------------------------------------------------------&lt;BR /&gt;Here's the output&lt;BR /&gt;Make: Must be a separator on rules line 16.  Stop.&lt;BR /&gt;I have a look at the makefile&lt;BR /&gt;--------------makefile--------------------------------------------&lt;BR /&gt;15. CPU&lt;BR /&gt;16.                         SYSTEM = $(CPU)&lt;BR /&gt;17. else&lt;BR /&gt;------------------------------------------------------------------</description>
      <pubDate>Tue, 03 Jul 2007 09:55:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056179#M93915</guid>
      <dc:creator>yazgoo</dc:creator>
      <dc:date>2007-07-03T09:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056180#M93916</link>
      <description>You need to provide more lines of your makefile.  But from that "else", you need gmake to support "if", "else" and "endif" in your makefiles.</description>
      <pubDate>Tue, 03 Jul 2007 09:59:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056180#M93916</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-07-03T09:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056181#M93917</link>
      <description>there's a if before the else,&lt;BR /&gt;and it works under 11.11 .&lt;BR /&gt;for my makefile, here's the begining :&lt;BR /&gt;--------------makefile--------------------------------------------------------------------&lt;BR /&gt;ifdef CPU&lt;BR /&gt;                         SYSTEM = $(CPU)&lt;BR /&gt;else&lt;BR /&gt;&lt;BR /&gt;                         SYSTEM = hppa11.23-hp-hpux&lt;BR /&gt;&lt;BR /&gt;endif&lt;BR /&gt;&lt;BR /&gt;# 140&lt;BR /&gt;&lt;BR /&gt;ifeq ($(SYSTEM),sun4)&lt;BR /&gt;&lt;BR /&gt;                         OSNAME = SunOS 5.3&lt;BR /&gt;                        OSMAJOR = 5&lt;BR /&gt;                        OSMINOR = 3&lt;BR /&gt;&lt;BR /&gt;             PRIVATEC++INCLUDES = +I"/extern/CenterLine/clc++/sparc-sunos4/incl"&lt;BR /&gt;                      MOTIFROOT = /usr/local/lib/motif/lib&lt;BR /&gt;&lt;BR /&gt;                  MOTIFINCLUDES = -I$(MOTIFROOT)&lt;BR /&gt;                    MOTIFLDPATH = -L$(MOTIFROOT)/Xm \&lt;BR /&gt;                                 -L$(MOTIFROOT)/Xt \&lt;BR /&gt;                                 -L$(MOTIFROOT)/X&lt;BR /&gt;                 MOTIFLIBRARIES = -lXm -lXt -lX11&lt;BR /&gt;                      MRMLDPATH = -L$(MOTIFROOT)/Mrm&lt;BR /&gt;                   MRMLIBRARIES = -lMrm&lt;BR /&gt;&lt;BR /&gt;                          STDCC = gcc&lt;BR /&gt;                         STDC++ = gcc&lt;BR /&gt;&lt;BR /&gt;                        OTHERCC = gcc&lt;BR /&gt;                       OTHERC++ = CC&lt;BR /&gt;&lt;BR /&gt;endif&lt;BR /&gt;#...other systems&lt;BR /&gt;-------------/makefile--------------------------------------------------------------------&lt;BR /&gt;if I set SYSTEM to hppa11.23-hp-hpux in configure, I have the same result,&lt;BR /&gt;and hppa11.23-hp-hpux isn't in the list.&lt;BR /&gt;hppa11.00-hp-hpux is listed.</description>
      <pubDate>Tue, 03 Jul 2007 10:33:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056181#M93917</guid>
      <dc:creator>yazgoo</dc:creator>
      <dc:date>2007-07-03T10:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056182#M93918</link>
      <description>&amp;gt;there's a if before the else, and it works under 11.11.&lt;BR /&gt;&lt;BR /&gt;HP's make doesn't support "if".  You must have have used gmake, possibly in /usr/local/bin/make?</description>
      <pubDate>Tue, 03 Jul 2007 11:23:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056182#M93918</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-07-03T11:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056183#M93919</link>
      <description>Sorry, I meant a 'ifdef'.&lt;BR /&gt;The code I showed works on HP 11.11.</description>
      <pubDate>Wed, 04 Jul 2007 01:48:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056183#M93919</guid>
      <dc:creator>yazgoo</dc:creator>
      <dc:date>2007-07-04T01:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056184#M93920</link>
      <description>hum...you're right...&lt;BR /&gt;I used the system make, which wasn't GNU make&lt;BR /&gt;Now that I use it, I got a new error :&lt;BR /&gt;&amp;gt; make: getcwd: : No such file or directory&lt;BR /&gt;&amp;gt; make: *** No rule to make target `Makefiles'.  Stop.&lt;BR /&gt;And Makefiles is a target which exists.</description>
      <pubDate>Wed, 04 Jul 2007 01:57:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056184#M93920</guid>
      <dc:creator>yazgoo</dc:creator>
      <dc:date>2007-07-04T01:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056185#M93921</link>
      <description>&amp;gt; make: getcwd: : No such file or directory&lt;BR /&gt;&lt;BR /&gt;Is getcwd a target or a command?  What is the line in question that has it?</description>
      <pubDate>Wed, 04 Jul 2007 03:02:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056185#M93921</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-07-04T03:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056186#M93922</link>
      <description>getcwd isn't in the Makefile.&lt;BR /&gt;make: getcwd: : No such file or directory&lt;BR /&gt;It comes from make bin.&lt;BR /&gt;getcwd is a c function which returns a char * similar to the result of pwd.&lt;BR /&gt;I think make verifies the inode exits before using it with getcwd, and doesn't find it.&lt;BR /&gt;Which means some dependencies aren't where they should.&lt;BR /&gt;I've tried changing some paths, but there are many.&lt;BR /&gt;I may install gmake, Imake.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Wed, 04 Jul 2007 03:51:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056186#M93922</guid>
      <dc:creator>yazgoo</dc:creator>
      <dc:date>2007-07-04T03:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056187#M93923</link>
      <description>getcwd isn't in the Makefile.&lt;BR /&gt;make: getcwd: : No such file or directory&lt;BR /&gt;It comes from make bin.&lt;BR /&gt;&lt;BR /&gt;Which make were you using when you got this error?&lt;BR /&gt;&lt;BR /&gt;&amp;gt;getcwd is a C function&lt;BR /&gt;&lt;BR /&gt;Yes, I know what getcwd(3) does.  I found it strange that make(1) would mention it, so I assumed it was from your makefile.&lt;BR /&gt;&lt;BR /&gt;For getcwd(3) to get that errno, it would imply that the directory path back to the mount point was broken.  I would expect that to be a one time problem, not continual.  What does "/usr/bin/pwd" show?</description>
      <pubDate>Wed, 04 Jul 2007 04:04:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056187#M93923</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-07-04T04:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056188#M93924</link>
      <description>It shows the current path. ^^</description>
      <pubDate>Wed, 04 Jul 2007 04:43:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056188#M93924</guid>
      <dc:creator>yazgoo</dc:creator>
      <dc:date>2007-07-04T04:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056189#M93925</link>
      <description>I've tried with another Makefile handmade :&lt;BR /&gt;same error.&lt;BR /&gt;I'm using gmake from another disk.&lt;BR /&gt;I think I'll install gmake instead.</description>
      <pubDate>Wed, 04 Jul 2007 05:16:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056189#M93925</guid>
      <dc:creator>yazgoo</dc:creator>
      <dc:date>2007-07-04T05:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056190#M93926</link>
      <description>Ok.&lt;BR /&gt;I installed gmake.&lt;BR /&gt;But now I got :&lt;BR /&gt;gmake[2]: ifdef: Command not found&lt;BR /&gt;What should I do?&lt;BR /&gt;I don't find any ifdef command.&lt;BR /&gt;ifdef macro is in GNU m4, I installed it, but that doesn't work.&lt;BR /&gt;Where do I find ifdef command?</description>
      <pubDate>Thu, 05 Jul 2007 04:39:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056190#M93926</guid>
      <dc:creator>yazgoo</dc:creator>
      <dc:date>2007-07-05T04:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056191#M93927</link>
      <description>&amp;gt;gmake[2]: ifdef: Command not found&lt;BR /&gt;&lt;BR /&gt;Perhaps gmake only has ifeq and ifneq?</description>
      <pubDate>Thu, 05 Jul 2007 08:55:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056191#M93927</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-07-05T08:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Imake/make migrating 11iv1 to 11iv2</title>
      <link>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056192#M93928</link>
      <description>I installed GNU make 3.69.&lt;BR /&gt;works find, thanks, everyone!</description>
      <pubDate>Thu, 12 Jul 2007 02:18:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/imake-make-migrating-11iv1-to-11iv2/m-p/5056192#M93928</guid>
      <dc:creator>yazgoo</dc:creator>
      <dc:date>2007-07-12T02:18:31Z</dc:date>
    </item>
  </channel>
</rss>

