esseks / monicelli

An esoteric programming language, come se fosse antani.
GNU General Public License v3.0
1.32k stars 52 forks source link

Should be easier to build #29

Closed palladius closed 5 years ago

palladius commented 8 years ago

Is it possible to have a Makefile or a ./configure? I'm unable to build on Ubuntu 14.04.

$ sudo apt-get install cmake bison

... e poi?

esseks commented 8 years ago

Hi, you can find detailed instructions in the Compilation section of the README. The project follows a standard workflow, where the Makefile is generated using CMake and then run. The closest thing to ./configure && make is (from the root of the project):

mkdir build/ && cd build/  # build out of tree
cmake ..                   # more or less like ../configure
make

Please let me know if there is anything unclear or badly worded in the documentation.

esseks commented 5 years ago

Closing as old/stalled. Feel free to reopen if you have more to discuss.