Skip to content
This repository has been archived by the owner on Jun 1, 2019. It is now read-only.

Commit

Permalink
Add makefile and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
vbsinha committed Apr 15, 2017
1 parent 5e6bd85 commit a32acdb
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ cabal.sandbox.config
.stack-work/
cabal.project.local
*~
pong/

idea.txt
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
install:
cabal update
cabal install

clean:
cabal clean

run:
@./dist/build/haskell-go-checkers/haskell-go-checkers
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
# haskell-go-checkers
Go and checkers game in Haskell

1. Install haskell most recent.(>7.10)
2. Clone the repo
3. cabal update
4. cabal install
5. cabal run
## Instructions
* Requirements : **ghc, cabal**
* Install
```bash
make
```
* Run
```bash
make run
```
* Clean
```bsh
make clean
```

0 comments on commit a32acdb

Please sign in to comment.