-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
66 lines (50 loc) · 1.63 KB
/
README.txt
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
@file README.txt @brief core runtime configuration
Copyright (c) 2009, 2010, 2021 by Lutz Sammer. All Rights Reserved.
Contributor(s):
License: AGPLv3
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
$Id$
To compile you must have the 'requires' installed.
Quickstart:
-----------
Type 'make' to create the runtime test application.
Type './rc_test -c example.core-rc' to run it.
Install:
--------
1a) git
git clone git://core-rc.git.sourceforge.net/gitroot/core-rc/core-rc
cd core-rc
# make should automatic pull the submodules from git.
make
./rc_test -c example.core-rc
2a) tarball
Download latest version from:
http://sourceforge.net/projects/core-rc/files/
tar vxf core-rc-2011-*.tar.bz2
cd core-rc
# make should automatic pull the submodules from git.
make
./rc_test -c example.core-rc
Documentation:
--------------
See core-rc.c how to use it in your own project.
Requires:
---------
core-array
core general purpose associative array.
(included in source tarball) or
http://sourceforge.net/projects/core-array/
Optional:
---------
peg
Parsing Expression Grammar - parser generator
http://piumarta.com/software/peg
(core-rc_parser.c.in was generated by version 0.1.18
#pragma used to reduce compiler warnings)