diff options
author | Joshua Hill | 2010-05-20 14:23:54 -0400 |
---|---|---|
committer | Joshua Hill | 2010-05-20 14:23:54 -0400 |
commit | c4477844178978ef36a607a911712ed4c9c6904a (patch) | |
tree | a26e9a4bff3e8bd4a769d100fe1ed81b38017a02 /Makefile | |
parent | fdbdb9f9e964528d08038e51cd57f9545cef294a (diff) | |
download | libirecovery-c4477844178978ef36a607a911712ed4c9c6904a.tar.gz libirecovery-c4477844178978ef36a607a911712ed4c9c6904a.tar.bz2 |
A few minor changes so pod2g will quit yelling at me
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,4 +1,4 @@ -all: static +all: @echo "Please choose either macosx, linux, or windows" static: @@ -18,6 +18,16 @@ macosx: windows: gcc -o libirecovery.dll -c src/libirecovery.c -I. -lusb-1.0 -lreadline -shared -fPIC gcc -o irecovery irecovery.c -I. -lirecovery -lreadline + +install: + cp libirecovery.so /usr/local/lib/libirecovery.so + cp include/libirecovery.h /usr/local/include/libirecovery.h + cp irecovery /usr/local/bin/irecovery + +uninstall: + rm -rf /usr/local/lib/libirecovery.so + rm -rf include/libirecovery.h /usr/local/include/libirecovery.h + rm -rf /usr/local/bin/irecovery clean: rm -rf irecovery libirecovery.o libirecovery.so libirecovery.a |