From: "Tony Peden" <[EMAIL PROTECTED]>

> On Sun, 2003-02-02 at 09:36, Frederic Bouvier wrote:
> > do a make distclean and restart at configure
>
> You'll need to re-run autogen.sh then configure after a distclean, I
> believe.

I don't think he is using the CVS version. But in that case, yes.

-Fred


> >
> > -Fred
> >
> > ----- Original Message -----
> > From: "wilco van den tol" <[EMAIL PROTECTED]>
> > To: "flight gear user discussions" <[EMAIL PROTECTED]>
> > Sent: Sunday, February 02, 2003 6:33 PM
> > Subject: [Flightgear-users] AMDEP_TRUE@: Command not found
> >
> >
> > > Yep,
> > >
> > > I run ./configure.
> > > When I do a separate Make on ATC it works fine, so I am trying to make
the
> > > makefile in Airports the same.
> > >
> > > But why is it generating @?
> > >
> > > Wilco.
> > >
> > > Makefile shouldn't have any @ in them. @ are substitution markers and
are
> > > found in Makefile.in files. Makefile files are generated by the
configure
> > > script.
> > >
> > > Do you run ./configure ?
> > >
> > > -Fred
> > >
> > >
> > >
> > > ----- Original Message -----
> > > From: "wilco van den tol" <[EMAIL PROTECTED]>
> > > To: "flight gear user discussions" <[EMAIL PROTECTED]>
> > > Sent: Sunday, February 02, 2003 6:00 PM
> > > Subject: [Flightgear-users] AMDEP_TRUE@: Command not found
> > >
> > >
> > > >
> > > > Hello,
> > > >
> > > > I am trying to compile the FGFS 0.9.1 on Suse 7.3.
> > > > I got the following error.
> > > > I am not a C++ programmer so I don't know anything about Makefiles
for
> > C++
> > > > So forgive my hacking......
> > > >
> > > > Making all in Airports
> > > > make[2]: Entering directory
> > > `/usr/local/source/FlightGear-0.9.1/src/Airports'
> > > > Makefile:183: *** missing separator.  Stop.
> > > > make[2]: Leaving directory
> > > `/usr/local/source/FlightGear-0.9.1/src/Airports'
> > > > make[1]: *** [all-recursive] Error 1
> > > > make[1]: Leaving directory `/usr/local/source/FlightGear-0.9.1/src'
> > > > make: *** [all-recursive] Error 1
> > > >
> > > > So I added some separators in the /Airports/Makefile.
> > > > This is how it looks now
> > > >
> > > > <-- section from Makefile
> > > > distclean-compile:
> > > > -rm -f *.tab.c
> > > > @AMDEP_TRUE@@am__include@
@am__quote@$(DEPDIR)/genrunways.Po@am__quote@
> > > > @AMDEP_TRUE@@am__include@
@am__quote@$(DEPDIR)/gensimple.Po@am__quote@
> > > > @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/runways.Po@am__quote@
> > > > @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/simple.Po@am__quote@
> > > >
> > > > distclean-depend:
> > > > -rm -rf $(DEPDIR)
> > > >
> > > > .cxx.o:
> > > > @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
> > > > @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo'
> > > > @AMDEPBACKSLASH@
> > > > @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
> > > > $(CXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$<
> > > >
> > > > .cxx.obj:
> > > > @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
> > > > @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo'
> > > > @AMDEPBACKSLASH@
> > > > @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
> > > > $(CXXCOMPILE) -c -o $@ `cygpath -w $<`
> > > > CXXDEPMODE = @CXXDEPMODE@
> > > > uninstall-info-am:
> > > >
> > > > tags: TAGS
> > > > ---> end section of Makefile. Oh, something got wrapped by my
> > > >
> > > > So I get this error instead. Well at least some result.....
> > > >
> > > >
> > > > Making all in Airports
> > > > make[2]: Entering directory
> > > `/usr/local/source/FlightGear-0.9.1/src/Airports'
> > > > make[2]: AMDEP_TRUE@: Command not found
> > > > make[2]: *** [simple.o] Error 127
> > > > make[2]: Leaving directory
> > > `/usr/local/source/FlightGear-0.9.1/src/Airports'
> > > > make[1]: *** [all-recursive] Error 1
> > > > make[1]: Leaving directory `/usr/local/source/FlightGear-0.9.1/src'
> > > > make: *** [all-recursive] Error 1
> > > >
> > > > So I tried a bit more and came up with this hack that resulted in a
new
> > > > error.
> > > >
> > > >
> > > > distclean-depend:
> > > > -rm -rf $(DEPDIR) .cxx.o:
> > > > @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
> > > > @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo'
> > > > @AMDEPBACKSLASH@
> > > > @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
> > > > $(CXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$<
> > > >
> > > >
> > > > with this error as a result.
> > > > make[2]: *** No rule to make target `simple.o', needed by
> > `libAirports.a'.
> > > > Stop.
> > > >
> > > > I am now fully stopped, because I haven't got a clue what to do
next.
> > > >
> > > >
> > > > Regards, Wilco.
> > > > The Netherlands



_______________________________________________
Flightgear-users mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-users

Reply via email to