Makefile problems

Fazal Haffejee fah_tam at istar.ca
Fri Jun 26 11:47:04 PDT 1998


I think my problems stem from an incomplete Makefile.in file.  When I untar kaffe (tar xvf kaffe-0_10_1_tar) notice that that it stops at Makefile.in as you can see from the following listing:>
kaffe-0.10.1/test/HelloWorldApp.java
> kaffe-0.10.1/test/Makefile.in                               <------------It stops here
> tar: End of archive volume 1 reached
> tar: ustar vol 1, 567 files, 2211840 bytes read.
> 
> ATTENTION! tar archive volume change required.
> Ready for archive volume: 2
> Input archive name or "." to quit tar.
> Archive name >
> 
As I mentioned earlier I don't know what to do so I press "." and it tells me I am ending the process prematurily.  When I look at the Makefile.in before running configure it looks like the following:

# Base level Makefile.in for kaffe.
#
# Copyright (c) 1996, 1997
#       Transvirtual Technologies, Inc.  All rights reserved.
#
# See the file "license.terms" for information on usage and redistribution
# of this file.

@VPATHOPT@=     @srcdir@

subdirs=        @subdirs@

all:
        @for i in $(subdirs); do (cd $$i && $(MAKE)) || exit 1 ; done

test:   DUMMY
        @(cd test && $(MAKE) test)

clean:
        @for i in $(subdirs); do (cd $$i && $(MAKE) clean) ; done

distclean:
        @for i in $(subdirs); do (cd $$i && $(MAKE) distclean) ; done
 rm -f ENVIRONMENT ENVIRONMENT.BAT Makefile
        rm -f config.cache config.log config.status
        rm -f .depend
        -rmdir @subdirs@

depend:
        @for i in $(subdirs); do (cd $$i && $(MAKE) depend) ; done

install:
        @for i in $(subdirs); do (cd $$i && $(MAKE) install) || exit 1 ; done

DUMMY:
*******************************************
Notice there is nothing after "DUMMY" .  Is there suppose to be?  If I look at my Makefile after running 
configure --prefix=/usr/home/project/kaffevm  it ends just like the above listing.
****************************************************
# Base level Makefile.in for kaffe.
#
# Copyright (c) 1996, 1997
#       Transvirtual Technologies, Inc.  All rights reserved.
#
# See the file "license.terms" for information on usage and redistribution
# of this file.

@VPATHOPT@=     @srcdir@

subdirs=        @subdirs@

all:
        @for i in $(subdirs); do (cd $$i && $(MAKE)) || exit 1 ; done

test:   DUMMY
        @(cd test && $(MAKE) test)

clean:
        @for i in $(subdirs); do (cd $$i && $(MAKE) clean) ; done

distclean:
        @for i in $(subdirs); do (cd $$i && $(MAKE) distclean) ; done

        rm -f ENVIRONMENT ENVIRONMENT.BAT Makefile
        rm -f config.cache config.log config.status
        rm -f .depend
        -rmdir @subdirs@

depend:
        @for i in $(subdirs); do (cd $$i && $(MAKE) depend) ; done

install:
        @for i in $(subdirs); do (cd $$i && $(MAKE) install) || exit 1 ; done

DUMMY:
travel2: {165} %
*********************
What is the make file suppose to look?  Does the problem lie with incorrectly untarring the file or am I barking up the wrong tree.  If it is untarring what switch am I suppose use or archive name am I suppose to type.

Thanks in advance
Fazel H
fah_tam at istar.ca

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://kaffe.org/pipermail/kaffe/attachments/19980626/175eb905/attachment-0021.htm 


More information about the kaffe mailing list