1
0
mirror of https://frontier.innolan.net/github/AmigaExamples.git synced 2025-12-08 16:01:39 +00:00

Converted 001.simple_image to use imagecon

This commit is contained in:
alpine9000
2016-03-01 15:18:22 +11:00
parent 091aa147b4
commit 7677ed6951
8 changed files with 114 additions and 123 deletions

View File

@ -1,5 +1,8 @@
(re)Learning how to program an Amiga after a 20 year break
==========================================================
Introduction
------------
This repo is not meant to be an amiga programming guide.
Documentation
-------------
@ -71,3 +74,23 @@ Notes:
# make
# make install
```
5. libtool
```
# wget http://ftpmirror.gnu.org/libtool/libtool-2.4.6.tar.gz
# tar zxfv libtool-2.4.6.tar.gz
# cd libtool-2.4.6
# ./configure --prefix=/usr/local
# make
# make install
```
6. libpng
```
# wget ftp://ftp.simplesystems.org/pub/png/src/libpng16/libpng-1.6.21.tar.gz
# tar zxfv libpng-1.6.21.tar.gz
# cd libpng-1.6.21
# ./configure --prefix=/usr/local
# make
# make install
```