diff --git a/movies/readme.md b/movies/readme.md index 9a58969..1505006 100644 --- a/movies/readme.md +++ b/movies/readme.md @@ -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 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: @@ -15,6 +15,14 @@ Simply type: make ``` +or, to manually compile, type: + +``` +gcc -std=c99 -g *.c -o movies +``` + +## Running + To run, type: ```