File: README

package info (click to toggle)
aribas 1.64-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 1,928 kB
  • sloc: ansic: 26,078; pascal: 384; asm: 201; lisp: 133; makefile: 45; sh: 1
file content (77 lines) | stat: -rw-r--r-- 2,441 bytes parent folder | download | duplicates (3)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
######################################################################
# README file for the directory aribas-1.63/src/LINUX
# Author: O.Forster 
#   Email: [email protected]
#   Web:   http://www.mathematik.uni-muenchen.de/~forster
# Date: 2008-02-22
######################################################################

COMPILATION of ARIBAS (V. 1.63, February 2008)

To compile ARIBAS for LINUX on a 80386 (or higher) computer, the 
following 26 files are necessary.
(To compile ARIBAS for LINUX on a non-Intel platform, use
the plain UNIX version)

a) 23 C-Files

alloc.c     analysis.c  aritaux.c   arith.c     aritool0.c  aritools.c
aritx.c     arity.c     aritz.c     array.c     control.c   errtext.c
eval.c      file.c      mainloop.c  mem0.c      parser.c    print.c
scanner.c   storage.c   syntchk.c   sysdep.c    terminal.c

b) 2 Include-Files

logscr.inc 	(included by terminal.c)
common.h	(common header file)

c) One Assembler File

arito386.S

Only the file arito386.S is in this directory, the other files are in
the parent directory. To compile ARIBAS, proceed as follows

1) Copy the files
	arito386.S	and	Makefile.linux
   to the parent directory.

2) Change to the parent directory. This should now contain all
   the files mentioned in a), b), c).

3) Rename Makefile.linux to makefile by the command

	mv Makefile.linux makefile

   and start compilation by

	make

   Renaming the makefile is not necessary if you use the command
   	make -f Makefile.linux

   If you don't like makefiles, the single command line

	gcc -DLiNUX -O -o aribas *.c *.S

   will also do it. (This supposes that the only files with extension
   .c and .S  in the current directory are those mentioned in a),b),c).)

After successful compilation, the executable file aribas will have
been created. You may then remove all .o files. (This can be done 
with the command 'make clean')
  

INSTALLATION

To run ARIBAS, only the executable file aribas is necessary. 
Move it to a directory which is in the PATH variable. If
you want online-help, you need also the file aribas.hlp, which
must be placed in a directory which is in the PATH variable.
There is also an interface to run ARIBAS within the GNU Emacs
editor (version 19.xx or higher). The necessary Emacs Lisp file is
aribas.el in the subdirectory EL. Please read the corresponding
README file.

############################# EOF ###################################