blob: 38372add60cd9aeb8884484dd7d0087eded6a75e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Native (non-web) interface written in C for interacting with [Interchange](https://interchangecommerce.org) servers
# Building
## Getting and preparing for configuration
```sh
$ git clone git://darapsa.org/libicclient.git
$ cd libicclient
$ autoreconf --install
```
## Configuring for various target hosts, compiling, linking, and installing
```sh
$ ./configure # (or use the platform specific wrappers, and adjust as necessary)
$ make # -jN (with N an integer number of parallel tasks you allow your computer to run for compiling this)
$ make install
```
|