summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3971798..ece8ebb 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,7 @@ TARGETS=usbmuxd iproxy testclient
2CFLAGS=-Wall -g -DDEBUG 2CFLAGS=-Wall -g -DDEBUG
3LIBS=-lpthread -lusb -lrt 3LIBS=-lpthread -lusb -lrt
4LDFLAGS= 4LDFLAGS=
5INSTALL_PREFIX=/usr
5 6
6all: $(TARGETS) 7all: $(TARGETS)
7 8
@@ -28,4 +29,8 @@ clean:
28realclean: clean 29realclean: clean
29 rm -f *~ 30 rm -f *~
30 31
32install: all
33 cp usbmuxd $(INSTALL_PREFIX)/sbin/
34 cp usbmuxd.h $(INSTALL_PREFIX)/include/
35
31.PHONY: all clean realclean 36.PHONY: all clean realclean