blob: 40c1e0a7ff0be3531ff14ea1d9f55de1900a2d9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
TARGETS=usbmuxd iproxy libusbmuxd.so
CFLAGS=-I. -Wall -g -DDEBUG -fPIC
LIBS=-lpthread -lusb -lrt
LDFLAGS=-L.
INSTALL_PREFIX=/usr/local
all: $(TARGETS)
main.o: main.c usbmuxd-proto.h sock_stuff.h iphone.h
iphone.o: iphone.c iphone.h usbmuxd.h sock_stuff.h
sock_stuff.o: sock_stuff.c sock_stuff.h
libusbmuxd.o: libusbmuxd.c usbmuxd.h usbmuxd-proto.h
iproxy.o: iproxy.c sock_stuff.h
libusbmuxd.so: libusbmuxd.o sock_stuff.o
%.so: %.o
$(CC) -o $@ -shared -Wl,-soname,$@.1 $^
%.o: %.c
$(CC) -o $@ $(CFLAGS) -c $<
usbmuxd: main.o sock_stuff.o iphone.o
$(CC) -o $@ $(LDFLAGS) $^ $(LIBS)
iproxy: iproxy.o
$(CC) -o $@ $(LDFLAGS) $^ $(LIBS) -lusbmuxd
clean:
rm -f *.o *.so $(TARGETS)
realclean: clean
rm -f *~
install: all
install -m 755 usbmuxd $(INSTALL_PREFIX)/sbin/
# udev crack
install -m 644 85-usbmuxd.rules $(INSTALL_PREFIX)/lib/udev/rules.d/
# protocol
install -m 644 usbmuxd-proto.h $(INSTALL_PREFIX)/include/
# iproxy
install -m 644 libusbmux.so $(INSTALL_PREFIX)/lib/
install -m 644 usbmuxd.h $(INSTALL_PREFIX)/include/
install -m 755 iproxy $(INSTALL_PREFIX)/bin/
uninstall:
-rm $(INSTALL_PREFIX)/sbin/usbmuxd
-rm $(INSTALL_PREFIX)/lib/udev/rules.d/85-usbmuxd.rules
-rm $(INSTALL_PREFIX)/include/usbmuxd-proto.h
-rm $(INSTALL_PREFIX)/lib/libusbmux.so
-rm $(INSTALL_PREFIX)/include/usbmuxd.h
-rm $(INSTALL_PREFIX)/bin/iproxy
.PHONY: all clean realclean
|