aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-01-16 18:51:11 +0100
committerCharles <sircharlesaze@gmail.com>2020-01-16 18:52:57 +0100
commit2e5ca2ab6276b7b24895ade28e1533356ef523dc (patch)
treef7afcc1bf3fa0a1c91303b9440305cfff9a9eec8 /README.md
parent14430cdd03dd2487c086e53ffcf0222ed3ffc126 (diff)
downloadlibft-2e5ca2ab6276b7b24895ade28e1533356ef523dc.tar.gz
libft-2e5ca2ab6276b7b24895ade28e1533356ef523dc.tar.bz2
libft-2e5ca2ab6276b7b24895ade28e1533356ef523dc.zip
Testing config with travis
Diffstat (limited to 'README.md')
-rw-r--r--README.md31
1 files changed, 28 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4c74c94..632fa8b 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,32 @@
# libft [![Build Status](https://api.travis-ci.com/HappyTramp/libft.svg?branch=master)](https://travis-ci.com/HappyTramp/libft)
-The state of this repo when I pass can be checked with the [raw](http://github.com/HappyTramp/libft/tree/raw) tag.
+libft is an extension/remake of the standard library.
-I have both the pre 2019 and current functions. There is also my [get\_nex\_line](http://github.com/HappyTramp/get_next_line) and [ft\_printf](http://github.com/HappyTramp/ft_printf) in the mix.
+## Getting Started
-The [rendu](http://github.com/HappyTramp/libft/tree/rendu) branch is the one I use for my other projects, it doesnt contain .gitignore, README.md and subjects.
+```
+git clone https://github.com/HappyTramp/libft libft
+cd libft
+make all
+```
+
+This will produce a `libft.a` library which you can link to your project.
+
+## Testing
+
+To install the test, you will have to clone this repo with the `--recurse-submodules` flag or run the following commands:
+
+```
+git submodule init
+git submodule update
+```
+
+Then: `make test`
+
+## Dependencies
+
+* [CTest](https://github.com/HappyTramp/ctest) - my testing library
+
+### School turn in
+
+The state of this project when I turned it in for correction is [here](http://github.com/HappyTramp/libft/tree/raw).