From 8f5ace5796c766d5d38482aba75827199bc32401 Mon Sep 17 00:00:00 2001 From: stitchy Date: Sun, 15 Oct 2023 16:17:07 -0700 Subject: [PATCH] Update Readme --- movies/readme.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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: ```