Update Readme
This commit is contained in:
parent
be78c1dbfa
commit
8f5ace5796
1 changed files with 10 additions and 2 deletions
|
@ -5,9 +5,9 @@ This is a program which reads a CSV file with data about movies.
|
||||||
Please take care that the format is correct as the program does not parse arbitrary
|
Please take care that the format is correct as the program does not parse arbitrary
|
||||||
length CSV files.
|
length CSV files.
|
||||||
|
|
||||||
# Compiling
|
## Compiling
|
||||||
|
|
||||||
You can compile this program by using the make command.
|
You can compile this program by using the make command or by hand.
|
||||||
|
|
||||||
Simply type:
|
Simply type:
|
||||||
|
|
||||||
|
@ -15,6 +15,14 @@ Simply type:
|
||||||
make
|
make
|
||||||
```
|
```
|
||||||
|
|
||||||
|
or, to manually compile, type:
|
||||||
|
|
||||||
|
```
|
||||||
|
gcc -std=c99 -g *.c -o movies
|
||||||
|
```
|
||||||
|
|
||||||
|
## Running
|
||||||
|
|
||||||
To run, type:
|
To run, type:
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue