[openbeos] src/tools/rc/Makefile, jam/Makefile

Some thoughts on setting up a build from scratch,
(post svn migration) and the manual steps necessary
to build two essential utilities:

About src/tools/rc/Makefile, 
the install target looks like this:

install:
        cp rc ~/config/bin
        cp librdef.so ~/config/lib

1. I think ~ is not expanded by make.
        Spell out /boot/home?

2. src/tools/jam/Jamfile expects 'rc' in
        ../../../distro/x86.R1/beos/bin/rc

Suggestion:

install:
        cp rc /boot/home/config/bin/
        cp librdef.so /boot/home/config/lib/

        mkdir -p ../../../distro/x86.R1/beos/bin
        mkdir -p ../../../distro/x86.R1/beos/lib

        cp rc ../../../distro/x86.R1/beos/bin/
        cp librdef.so ../../../distro/x86.R1/beos/lib/

This could be all wrong. I don't know.


About src/tools/jam/Makefile:

No make install target?
(Sure I can drag and drop. No problemo.)

/Jonas Sundström.                 www.kirilla.com


Other related posts: