Mail Archives: cygwin/2002/09/05/22:18:00
------=_NextPart_000_001E_01C2555B.4302FF50
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Hi,
Well there is no 'all' file or directory. I have no idea about the
dependences of the '.PHONY' target -Sorry, I'm a newbie-. But, I have
attached the Makefile I use to compile, I hope this will clarify the
problem.
Thanks a lot in advance!
Juan
----- Original Message -----
From: "Igor Pechtchanski" <pechtcha AT cs DOT nyu DOT edu>
To: "Juan Antonio Rivera Vila" <tunnelprod AT hotmail DOT com>
Cc: <cygwin AT cygwin DOT com>
Sent: Friday, September 06, 2002 3:44 AM
Subject: Re: Problem with 'make'
> On Fri, 6 Sep 2002, Juan Antonio Rivera Vila wrote:
>
> > Hi to all,
> > Everytime I try to run make utility using
> >
> > $ make -f Makefile
> >
> > I get a message like this
> >
> > make: 'all' is up to date.
> >
> > Do you what does it mean?
> >
> > Thanks!
> > Juan
>
> Do you, by any chance, have a file or a directory called 'all'? Does your
> Makefile have 'all' as one of the dependences of the '.PHONY' target? It
> might also help if you actually posted your Makefile.
> Igor
> --
> http://cs.nyu.edu/~pechtcha/
> |\ _,,,---,,_ pechtcha AT cs DOT nyu DOT edu
> ZZZzz /,`.-'`' -. ;-;;,_ igor AT watson DOT ibm DOT com
> |,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski
> '---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow!
>
> It took the computational power of three Commodore 64s to fly to the moon.
> It takes a 486 to run Windows 95. Something is wrong here. -- SC sig file
>
------=_NextPart_000_001E_01C2555B.4302FF50
Content-Type: application/octet-stream;
name="Makefile"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="Makefile"
#=0A=
#=0A=
# Make file for compiling HMM code in this directory.=0A=
# Author: Tapas Kanungo=0A=
# Date: 23 February 1998=0A=
# $Id: Makefile,v 1.3 1998/02/23 08:12:35 kanungo Exp kanungo $=0A=
# =0A=
#=0A=
CFLAGS=3D -g=0A=
INCS=3D=0A=
# use the following line to "Purify" the code=0A=
#CC=3Dpurify gcc=0A=
CC=3Dgcc=0A=
SRCS=3Dbaum.c viterbi.c forward.c backward.c hmmutils.c sequence.c \=0A=
genseq.c nrutil.c testvit.c esthmm.c hmmrand.c testfor.c =0A=
=0A=
all : genseq testvit testfor esthmm=0A=
=0A=
genseq: genseq.o sequence.o nrutil.o hmmutils.o hmmrand.o=0A=
$(CC) -o genseq genseq.o sequence.o nrutil.o \=0A=
hmmrand.o hmmutils.o -lm=0A=
testvit: testvit.o viterbi.o nrutil.o hmmutils.o sequence.o =0A=
$(CC) -o testvit testvit.o viterbi.o nrutil.o sequence.o \=0A=
hmmutils.o hmmrand.o -lm=0A=
testfor: testfor.o forward.o nrutil.o hmmutils.o sequence.o hmmrand.o=0A=
$(CC) -o testfor testfor.o forward.o nrutil.o sequence.o \=0A=
hmmutils.o hmmrand.o -lm=0A=
esthmm: esthmm.o baum.o nrutil.o hmmutils.o sequence.o \=0A=
forward.o backward.o hmmrand.o=0A=
$(CC) -o esthmm esthmm.o baum.o nrutil.o sequence.o hmmutils.o \=0A=
forward.o backward.o hmmrand.o -lm=0A=
clean:=0A=
rm *.o a.out =0A=
# DO NOT DELETE THIS LINE -- make depend depends on it.=0A=
=0A=
------=_NextPart_000_001E_01C2555B.4302FF50
Content-Type: text/plain; charset=us-ascii
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
------=_NextPart_000_001E_01C2555B.4302FF50--
- Raw text -