Add 'install' to Makefile
This commit is contained in:
parent
ca51937926
commit
46516461eb
|
@ -1,4 +1,4 @@
|
||||||
files = pebblisp.c tokens.c object.c env.c
|
files = pebblisp.c tokens.c object.c env.c platform/unix.c
|
||||||
exe = pebblisp
|
exe = pebblisp
|
||||||
|
|
||||||
all:
|
all:
|
||||||
|
@ -15,3 +15,6 @@ debug:
|
||||||
|
|
||||||
run:
|
run:
|
||||||
./$(exe)
|
./$(exe)
|
||||||
|
|
||||||
|
install:
|
||||||
|
cp ./$(exe) /usr/bin/pl
|
||||||
|
|
Loading…
Reference in New Issue