made readme a markdown file

This commit is contained in:
Blake J. Harnden 2018-01-11 12:03:55 -08:00
parent 5a246159f8
commit 9187b50361
2 changed files with 6 additions and 7 deletions

View file

@ -27,7 +27,7 @@ ACLOCAL_AMFLAGS = -I config
# extra files to include with distribution tarball # extra files to include with distribution tarball
EXTRA_DIST = bootstrap.sh LICENSE \ EXTRA_DIST = bootstrap.sh LICENSE \
README.rst ASSIGNMENT_OF_COPYRIGHT.pdf \ README.md ASSIGNMENT_OF_COPYRIGHT.pdf \
README-Xen Changelog kernel \ README-Xen Changelog kernel \
python-prefix.py revision.sh \ python-prefix.py revision.sh \
.version .version.date \ .version .version.date \
@ -101,7 +101,6 @@ endef
define fpm-daemon-rpm = define fpm-daemon-rpm =
fpm -s python -t rpm \ fpm -s python -t rpm \
--verbose \
-p NAME_$1_VERSION_ARCH.rpm \ -p NAME_$1_VERSION_ARCH.rpm \
--python-setup-py-arguments --service=$1 \ --python-setup-py-arguments --service=$1 \
-m "$(CORE_MAINTAINERS)" \ -m "$(CORE_MAINTAINERS)" \

View file

@ -33,7 +33,7 @@ Building CORE
To build this software you should use: To build this software you should use:
```bash ```shell
./bootstrap.sh ./bootstrap.sh
./configure ./configure
make make
@ -64,7 +64,7 @@ Being able to build documentation depends on help2man being installed.
Once that has been done you can run the following commands: Once that has been done you can run the following commands:
```bash ```shell
./bootstrap.sh ./bootstrap.sh
./configure ./configure
make html make html
@ -79,7 +79,7 @@ Install fpm
Build package commands, DESTDIR is used for gui packaging only Build package commands, DESTDIR is used for gui packaging only
```bash ```shell
./bootstrap.sh ./bootstrap.sh
./configure ./configure
make make
@ -98,14 +98,14 @@ Running CORE
First start the CORE services: First start the CORE services:
```bash ```shell
sudo /etc/init.d/core-daemon start sudo /etc/init.d/core-daemon start
``` ```
This automatically runs the core-daemon program. This automatically runs the core-daemon program.
Assuming the GUI is in your PATH, run the CORE GUI by typing the following: Assuming the GUI is in your PATH, run the CORE GUI by typing the following:
```bash ```shell
core-gui core-gui
``` ```