Bram Moolenaar | a62372b | 2020-09-09 20:41:40 +0200 | [diff] [blame] | 1 | INSTALLami.txt - Installation of Vim from source on Amiga and MorphOS |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | |
| 3 | This file contains instructions for compiling Vim. If you already have an |
| 4 | executable version of Vim, you don't need this. |
| 5 | |
| 6 | The file "feature.h" can be edited to match your preferences. You can skip |
| 7 | this, then you will get the default behavior as is documented, which should |
| 8 | be fine for most people. |
| 9 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 10 | Summary: |
Bram Moolenaar | a62372b | 2020-09-09 20:41:40 +0200 | [diff] [blame] | 11 | make -f Make_ami.mak gcc |
| 12 | make -f Make_ami.mak CC=vc vbcc |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 13 | |
Bram Moolenaar | a62372b | 2020-09-09 20:41:40 +0200 | [diff] [blame] | 14 | Please note that currently only gcc has been tested. VBCC would need its own |
| 15 | CFLAGS, but should otherwise work out of the box. For cross-compiling, UNM |
| 16 | can be used to override uname and thereby set the target. An example is shown |
| 17 | below: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 18 | |
Bram Moolenaar | a62372b | 2020-09-09 20:41:40 +0200 | [diff] [blame] | 19 | make -f Make_ami.mak CC=ppc-morphos-gcc UNM=MorphOS |