Added install step
This commit is contained in:
parent
3eb8404199
commit
f1d53ddae1
1 changed files with 2 additions and 0 deletions
2
Makefile
2
Makefile
|
@ -26,5 +26,7 @@ src/shell.o: src/shell.hpp src/shell.cpp
|
||||||
$(GPP) -c src/shell.cpp -o src/shell.o
|
$(GPP) -c src/shell.cpp -o src/shell.o
|
||||||
src/string.o: src/string.h src/string.c
|
src/string.o: src/string.h src/string.c
|
||||||
$(GPP) -c src/string.c -o src/string.o
|
$(GPP) -c src/string.c -o src/string.o
|
||||||
|
install:
|
||||||
|
mv sloth /usr/bin/
|
||||||
clean:
|
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
|
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
|
||||||
|
|
Reference in a new issue