Last active
August 29, 2015 14:02
-
-
Save tattlemuss/3ed133e3c1f1891c8f54 to your computer and use it in GitHub Desktop.
download and build vasm and vlink
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
curl http://sun.hasenbraten.de/vasm/release/vasm.tar.gz > vasm.tar.gz | |
curl http://sun.hasenbraten.de/vlink/release/vlink.tar.gz > vlink.tar.gz | |
mkdir vasm | |
mkdir vlink | |
tar -zxvf ./vasm.tar.gz # unpacks to "vasm" | |
tar -zxvf ./vlink.tar.gz # unpacks to "vlink" | |
cd vasm | |
make CPU=m68k SYNTAX=mot | |
cd .. | |
cd vlink | |
make CPU=m68k SYNTAX=mot | |
cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment