From 0ecc8bfb38a605043afe9acec7808e3c28ffc39c Mon Sep 17 00:00:00 2001 From: Jonathan Pennington <jonathan.s.pennington@wmich.edu> Date: Mon, 18 Sep 2017 15:12:12 -0400 Subject: [PATCH] adding makefile --- makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..97c35cd --- /dev/null +++ b/makefile @@ -0,0 +1,7 @@ +all: + gcc -Wall -Wpedantic -std=c99 -g BuildDataBase.c -o BuildDataBase + gcc -Wall -Wpedantic -std=c99 -g UseDataBase.c -o UseDataBase +build: + ./BuildDataBase +use: + ./UseDataBase < test-input.txt -- GitLab