From 2b92742dccffe044a507e7a1483ef73810586c74 Mon Sep 17 00:00:00 2001 From: Bobbi Webber-Manners Date: Thu, 6 Feb 2020 21:15:28 -0500 Subject: [PATCH] Added Makefile --- bobbi/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 bobbi/Makefile diff --git a/bobbi/Makefile b/bobbi/Makefile new file mode 100644 index 0000000..286c109 --- /dev/null +++ b/bobbi/Makefile @@ -0,0 +1,8 @@ +all: sortdir + +sortdir: sortdir.c + occ -w -o sortdir sortdir.c + +install: sortdir + cp sortdir /usr/local/bin +