From f1d53ddae1052b354b18832fc14f995bed7cb6ba Mon Sep 17 00:00:00 2001 From: Brandon Rozek Date: Mon, 27 Jan 2020 19:32:44 -0500 Subject: [PATCH] Added install step --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index f42be2f..72297e0 100644 --- a/Makefile +++ b/Makefile @@ -26,5 +26,7 @@ src/shell.o: src/shell.hpp src/shell.cpp $(GPP) -c src/shell.cpp -o src/shell.o src/string.o: src/string.h src/string.c $(GPP) -c src/string.c -o src/string.o +install: + mv sloth /usr/bin/ clean: rm src/parser/lex.yy.c src/parser/parser.tab.c src/parser/parser.tab.h src/parser/lex.yy.o src/parser/parser.tab.o src/variables/environment.o src/variables/variable.o src/variables/value.o src/operations/node.o src/operations/operators.o src/string.o src/shell.o sloth