Fixup README

pull/146/head
falkTX 2020-12-15 11:58:58 +00:00
parent 47172c5f56
commit 3052974669
No known key found for this signature in database
GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 16 additions and 16 deletions

View File

@ -1,10 +1,10 @@
# -*- mode: org -*- # NON
* Non-things build instructions ## Non-things build instructions
This repository contains all of the non-* software. This repository contains all of the non-* software.
** Getting NTK ### Getting NTK
If you just cloned the non repository or just executed git pull, then If you just cloned the non repository or just executed git pull, then
you should also run you should also run
@ -16,15 +16,15 @@ git submodule update --init
to pull down the latest NTK code required by Non. Git does *not* do to pull down the latest NTK code required by Non. Git does *not* do
this automatically. this automatically.
** Building NTK ### Building NTK
If you don't have NTK installed system-wide (which isn't very likely If you don't have NTK installed system-wide (which isn't very likely
yet) you *MUST* begin the build process by typing: yet) you *MUST* begin the build process by typing:
``` ```
cd lib/ntk cd lib/ntk
./waf configure ./waf configure
./waf ./waf
``` ```
Once NTK has been built you must install it system-wide before Once NTK has been built you must install it system-wide before
@ -33,29 +33,29 @@ attempting to build the non-* programs.
To install NTK type: To install NTK type:
``` ```
su -c './waf install' su -c './waf install'
``` ```
** Build all projects ### Build all projects
Typing: Typing:
``` ```
./waf configure ./waf configure
./waf ./waf
su -c './waf install' su -c './waf install'
``` ```
from the base of the checkout of the Non git repository will build and from the base of the checkout of the Non git repository will build and
install all of the non-* programs together. install all of the non-* programs together.
** Build a single project ### Build a single project
Typing: Typing:
``` ```
./waf configure --project=[timline|sequencer|mixer|session-manager] ./waf configure --project=[timline|sequencer|mixer|session-manager]
./waf ./waf
su -c './waf install' su -c './waf install'
``` ```