summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Joshua Hill2010-05-13 07:06:45 -0400
committerGravatar Joshua Hill2010-05-13 07:06:45 -0400
commit5bbd277ce71521a3898697e4c8cb25ed65990f9c (patch)
treee786fc44f0be708c12ae85dc5ccf3227a5010135 /Makefile
parenta2a3537ea24d3cdcc1b210b45695d6eed33ee433 (diff)
downloadlibirecovery-5bbd277ce71521a3898697e4c8cb25ed65990f9c.tar.gz
libirecovery-5bbd277ce71521a3898697e4c8cb25ed65990f9c.tar.bz2
Cleaned up irecv_reset(), and irecv_close() to make sure they were returning error if there really was an error
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a2074a7..2d7cc8e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,11 @@
-all:
+all: static
@echo "Please choose either macosx, linux, or windows"
+static:
+ gcc -o libirecovery.o -c src/libirecovery.c -g -I./include
+ ar rs libirecovery.a libirecovery.o
+ gcc -o irecovery src/irecovery.c -g -I./include -L. -lirecovery -lreadline -lusb-1.0
+
linux:
gcc -o libirecovery.o -c src/libirecovery.c -g -I./include -lreadline -fPIC
gcc -o libirecovery.so libirecovery.o -g -shared -Wl,-soname,libirecovery.so -lusb-1.0