Add instructions for building

This commit is contained in:
Ralph Moeritz 2023-12-17 11:02:29 +10:30
parent efe842012a
commit f9e3a79a18
3 changed files with 22 additions and 2 deletions

1
.gitignore vendored
View File

@ -15,5 +15,6 @@ configure
depcomp
install-sh
ltmain.sh
m4
missing
stamp-h1

View File

@ -27,9 +27,27 @@ command line parameters.
| Show About | A | | Show version and copyright information. |
| Toggle Krusader ROM | K | -krusaderRom | Toggle between Krusader and BASIC/Monitor ROMs |
Before exiting, Pom1 writes its configuration options to `$HOME/.pom1/pom1.cfg`
Before exiting, Pom1 writes its configuration options to
`$HOME/.pom1/pom1.cfg`; you can modify options directly in this file as well.
Building
===
Generate the `configure` script:
$ libtoolize --force
$ aclocal
$ autoheader
$ automake --force-missing --add-missing
$ autoconf
After that's it's just the usual:
$ ./configure
$ make
$ make install
Other information
===
- You can find more information about the project at the Pom1 website: http://pom1.sourceforge.net/
You can find more information about the project at the Pom1 website: http://pom1.sourceforge.net/

View File

@ -1,5 +1,6 @@
AC_PREREQ([2.68])
AC_INIT([Pom1 Apple 1 Emulator], [1.0.0], [jdcorrado@gmail.com], [pom1])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([src/main.c])
AC_CONFIG_HEADERS([config.h])