diff --git a/30years/README.md b/30years/README.md deleted file mode 100644 index c65c0f4..0000000 --- a/30years/README.md +++ /dev/null @@ -1,41 +0,0 @@ -## Description - -To celebrate the 30th anniversary of the Amiga, I decided to write a couple of -small applications that run on classic Amiga computers. The point ? Does there -need to be one ? The Amiga was a fun machine, programming it was fun and -it still is. - -Another goal is to practice Amiga OS development using only free software tools and -libraries (the exception being the OS itself) and gain a deeper understanding -of the system. - -## System Requirements - -The software was developed on a GNU/Linux system with VBCC and GNU make. -It was mostly deployed and tested on FS-UAE. - -I am certain it can be built on different systems, however this will -require modifications. - -## Building - -The software was developed on VBCC and apart from VBCC and NDK, there are no other -dependencies. - -Currently, on a correctly set up development system typing - -``` -make -``` - -should just work. - -### Status - -In progress :) - -## Current applications - - * intuitoy1 - experiments with Intuition (Kickstart 1.x) - * iffview - a simple IFF viewer - diff --git a/hunktools/.gitignore b/hunktools/.gitignore new file mode 100644 index 0000000..2018a51 --- /dev/null +++ b/hunktools/.gitignore @@ -0,0 +1,3 @@ +*.pyc +*.library +__pycache__ diff --git a/30years/iffview/.gitignore b/iffview/.gitignore similarity index 100% rename from 30years/iffview/.gitignore rename to iffview/.gitignore diff --git a/30years/iffview/Makefile b/iffview/Makefile similarity index 100% rename from 30years/iffview/Makefile rename to iffview/Makefile diff --git a/30years/iffview/README.md b/iffview/README.md similarity index 100% rename from 30years/iffview/README.md rename to iffview/README.md diff --git a/30years/iffview/iffview.c b/iffview/iffview.c similarity index 100% rename from 30years/iffview/iffview.c rename to iffview/iffview.c diff --git a/30years/iffview/ilbm.c b/iffview/ilbm.c similarity index 100% rename from 30years/iffview/ilbm.c rename to iffview/ilbm.c diff --git a/30years/iffview/ilbm.h b/iffview/ilbm.h similarity index 100% rename from 30years/iffview/ilbm.h rename to iffview/ilbm.h diff --git a/30years/intuitoy1/.gitignore b/intuitoy1/.gitignore similarity index 100% rename from 30years/intuitoy1/.gitignore rename to intuitoy1/.gitignore diff --git a/30years/intuitoy1/Makefile b/intuitoy1/Makefile similarity index 100% rename from 30years/intuitoy1/Makefile rename to intuitoy1/Makefile diff --git a/30years/intuitoy1/README.md b/intuitoy1/README.md similarity index 100% rename from 30years/intuitoy1/README.md rename to intuitoy1/README.md diff --git a/30years/intuitoy1/intuitoy1.c b/intuitoy1/intuitoy1.c similarity index 100% rename from 30years/intuitoy1/intuitoy1.c rename to intuitoy1/intuitoy1.c