Skip to content

Commit

Permalink
Ready for version 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vicentebolea committed Jun 21, 2017
1 parent 59a8b6c commit 47fff39
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 5 deletions.
20 changes: 20 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,23 @@ AM_TESTS_ENVIRONMENT = \

tests/integration-test-runner.py:
chmod +x ./tests/integration-test-runner.py


EXTRA_DIST = tests/integration-test-runner.py \
tests/test-config.yaml \
schedulers/rr.hh \
schedulers/sjf.hh \
schedulers/rm.hh \
schedulers/lt.hh \
schedulers/edf.hh \
schedulers/scheduler_factory.hh \
schedulers/interactive_scheduler.hh \
launcher.hh \
cli_options.hh \
options.hh \
reader.hh \
text_reader.hh \
stdin_reader.hh \
reader_factory.hh \
scheduler.hh

9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,19 @@ Current supported scheduler:
### Building it
The project uses Autotools. Thus, the building steps are the common three steps to build:
```
#Download the tar ball from `version0.0.2`.
wget ...
#Download the tar ball from Github.
wget https://github.com/vicentebolea/scheduling-simulator/archive/v0.0.2.tar.gz
#untar
tar xf scheduler...
tar xf scheduling-simulator-0.0.2.tar.gz
# configure the project
cd scheduler..
./configure --prefix `pwd`/build
# Optional, check the unit tests
make check
# Compile and install it
make install
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# vim: foldmethod=marker
AC_INIT([SchedulerSimulator],
[0.0.1],
AC_INIT([Scheduling-Simulator],
[0.0.2],
[vicente.bolea@gmail.com],
[], [vicentebolea.me])
AC_CONFIG_AUX_DIR([./.autotools_aux])
Expand Down

0 comments on commit 47fff39

Please sign in to comment.