|
|
@@ -0,0 +1,28 @@
|
|
|
+# RIGAL for UNIX.
|
|
|
+Includes RIGAL to C compiler, examples, detailed language description and user guide.
|
|
|
+
|
|
|
+See the `doc/` folder for more information on RIGAL in general
|
|
|
+
|
|
|
+
|
|
|
+## Build
|
|
|
+
|
|
|
+
|
|
|
+### Prerequisites
|
|
|
+
|
|
|
+#### Mac OS X
|
|
|
+1. install Xcode and the developer tools, if you haven't already
|
|
|
+
|
|
|
+#### Ubuntu Linux
|
|
|
+1. `sudo apt-get install build-essential gcc-multilib csh`
|
|
|
+
|
|
|
+
|
|
|
+### Build
|
|
|
+
|
|
|
+```bash
|
|
|
+cd ${RIGAL}/rigsc.446/src
|
|
|
+export rig="$PWD/../bin"
|
|
|
+export C_INCLUDE_PATH="/usr/include/malloc/" # for Mac OS X
|
|
|
+make
|
|
|
+```
|
|
|
+
|
|
|
+**NOTE**: currently there are errors when testing `rigcrf` but most things appear to work anyhow
|