forked from amperka/ino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
38 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
In order to install Ino from source tarball run: | ||
|
||
make install | ||
|
||
By default Ino is installed into `/usr/local'. You can change this by setting | ||
PREFIX or DESTDIR variables. | ||
|
||
* DESTDIR changes file system root (`/' by default) | ||
* PREFIX sets installation prefix (`/usr/local` by default). | ||
|
||
Examples: | ||
|
||
* make install DESTDIR=~/ino | ||
* make install PREFIX=/usr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
DESTDIR=/ | ||
PREFIX=/usr/local | ||
|
||
all: | ||
@# do nothing yet | ||
|
||
doc: | ||
$(MAKE) -f doc/Makefile html | ||
|
||
install: | ||
python setup.py install --root $(DESTDIR) --prefix $(PREFIX) --exec-prefix $(PREFIX) | ||
|
||
.PHONY : doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters