mirror of
https://frontier.innolan.net/github/AmigaExamples.git
synced 2025-12-09 16:30:44 +00:00
Update README.md
This commit is contained in:
64
README.md
64
README.md
@ -15,41 +15,47 @@ Notes:
|
|||||||
```
|
```
|
||||||
# git clone git://github.com/cahirwpz/amigaos-cross-toolchain.git
|
# git clone git://github.com/cahirwpz/amigaos-cross-toolchain.git
|
||||||
# cd amigaos-cross-toolchain
|
# cd amigaos-cross-toolchain
|
||||||
#./toolchain-m68k --prefix=/usr/local/amiga build
|
# ./toolchain-m68k --prefix=/usr/local/amiga build
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
1. autoconf
|
1. autoconf
|
||||||
curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz
|
```
|
||||||
tar xzf autoconf-2.69.tar.gz
|
# curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz
|
||||||
cd autoconf-2.69
|
# tar xzf autoconf-2.69.tar.gz
|
||||||
./configure --prefix=/usr/local
|
# cd autoconf-2.69
|
||||||
make
|
# ./configure --prefix=/usr/local
|
||||||
make install
|
# make
|
||||||
|
# make install
|
||||||
|
```
|
||||||
|
|
||||||
2. automake
|
2. automake
|
||||||
curl -OL http://ftpmirror.gnu.org/automake/automake-1.15.tar.gz
|
```
|
||||||
tar xzf automake-1.15.tar.gz
|
# curl -OL http://ftpmirror.gnu.org/automake/automake-1.15.tar.gz
|
||||||
cd automake-1.15
|
# tar xzf automake-1.15.tar.gz
|
||||||
./configure --prefix=/usr/local
|
# cd automake-1.15
|
||||||
make
|
# ./configure --prefix=/usr/local
|
||||||
make install
|
# make
|
||||||
|
# make install
|
||||||
|
```
|
||||||
|
|
||||||
3. pkg-config
|
3. pkg-config
|
||||||
curl -OL https://pkg-config.freedesktop.org/releases/pkg-config-0.29.tar.gz
|
```
|
||||||
tar zxf pkg-config-0.29.tar.gz
|
# curl -OL https://pkg-config.freedesktop.org/releases/pkg-config-0.29.tar.gz
|
||||||
cd pkg-config-0.29
|
# tar zxf pkg-config-0.29.tar.gz
|
||||||
./configure --with-internal-glib --prefix=/usr/local LDFLAGS="-framework CoreFoundation -framework Carbon"
|
# cd pkg-config-0.29
|
||||||
make
|
# ./configure --with-internal-glib --prefix=/usr/local LDFLAGS="-framework CoreFoundation -framework Carbon"
|
||||||
make install
|
# make
|
||||||
|
# make install
|
||||||
|
```
|
||||||
|
|
||||||
4. lha
|
4. lha
|
||||||
git clone https://github.com/jca02266/lha.git
|
```
|
||||||
aclocal
|
# git clone https://github.com/jca02266/lha.git
|
||||||
autoheader
|
# aclocal
|
||||||
automake -a
|
# autoheader
|
||||||
autoconf
|
# automake -a
|
||||||
./configure --prefix=/usr/local
|
# autoconf
|
||||||
make
|
# ./configure --prefix=/usr/local
|
||||||
make install
|
# make
|
||||||
|
# make install
|
||||||
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user