blob: c8669e01f5747214a1dfc5d6758da25156466413 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
README
------
> ./autogen.sh
runs auto* and then ./configure
It should be all you need to do to get working Makefiles on your
platform, whatever your platform is. :)
Then just do
> make
Roger:
The summary is that I'm requiring all developers to have auto*
(aclocal, autoconf, automake) installed on their machine.
Since different versions of auto* generate vastly different output,
I'm going to leave its output out of the repository. This means that
whenever you check out a repository, you need to run auto* to generate
a configure file, then run ./configure to get a Makefile, then build.
|