-
-
Notifications
You must be signed in to change notification settings - Fork 7
Building
Robert Winkler edited this page Mar 31, 2016
·
1 revision
I use premake for generating makefiles but you can use premake to generate project files for any of the 9 or so IDE’s it supports.
~ $ git clone https://github.com/rswinkle/C_Interpreter.git Cloning into 'C_Interpreter'... remote: Reusing existing pack: 489, done. remote: Total 489 (delta 0), reused 0 (delta 0) Receiving objects: 100% (489/489), 168.87 KiB | 301.00 KiB/s, done. Resolving deltas: 100% (264/264), done. Checking connectivity... done. ~ $ cd C_Interpreter/ ~/C_Interpreter $ premake4 gmake Building configurations... Running action 'gmake'... Generating build/Makefile... Generating build/cinterpreter.make... Done. ~/C_Interpreter $ cd build/ ~/C_Interpreter/build $ make ==== Building cinterpreter (debug) ==== ... Linking cinterpreter ~/C_Interpreter/build $