-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathREADME.HG
More file actions
47 lines (33 loc) · 1.49 KB
/
README.HG
File metadata and controls
47 lines (33 loc) · 1.49 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
IDL4 README
Andreas Haeberlen
May 31, 2002
If you obtained this version of IDL4 directly from the CVS, please follow
the instructions below:
1. Make sure that you have at least the following tools:
- automake 1.6.3
- autoconf 2.52
You will also need matching versions of 'autoheader', which comes
with autoconf, and 'aclocal', which is included in the automake
package.
2. Run the script 'autogen.sh'. This will create the configure script,
which in turn will create the Makefiles.
Now you have three options:
- You can build IDL4 directly from the source directory by simply
typing 'make'.
- You can build the IDL4 distribution package by doing a 'make dist'.
This produces an archive called idl4-xxx.tar.gz, where xxx is the
current version number; you can unpack this archive elsewhere and
do a 'conventional' build.
- You can build IDL4 in another directory. First do a 'make distclean',
then create another directory and run the configure script from there:
ahae@i30nb9:~/idl4 > cd ..
ahae@i30nb9:~ > mkdir build
ahae@i30nb9:~ > cd build
ahae@i30nb9:~/build > ../idl4/configure
ahae@i30nb9:~/build > make
Using a separate build directory is strongly recommended because it keeps
source files and generated files nicely separated. Should anything go
seriously wrong, you can always return to the initial state by doing
a 'make maintainer-clean'.
Enjoy!
- Andreas Haeberlen