diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 29 |
1 files changed, 19 insertions, 10 deletions
@@ -1,16 +1,20 @@ -TARGETS=usbmuxd iproxy -CFLAGS=-I. -Wall -g -DDEBUG +TARGETS=usbmuxd iproxy libusbmuxd.so +CFLAGS=-I. -Wall -g -DDEBUG -fPIC LIBS=-lpthread -lusb -lrt -LDFLAGS= +LDFLAGS=-L. INSTALL_PREFIX=/usr all: $(TARGETS) -main.o: main.c usbmuxd.h sock_stuff.h iphone.h +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 libusbmuxd.h usbmuxd.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 $< @@ -18,17 +22,22 @@ iproxy.o: iproxy.c sock_stuff.h usbmuxd: main.o sock_stuff.o iphone.o $(CC) -o $@ $(LDFLAGS) $^ $(LIBS) -iproxy: iproxy.o libusbmuxd.o sock_stuff.o - $(CC) -o $@ $(LDFLAGS) $^ $(LIBS) +iproxy: iproxy.o + $(CC) -o $@ $(LDFLAGS) $^ $(LIBS) -lusbmuxd clean: - rm -f *.o $(TARGETS) + rm -f *.o *.so $(TARGETS) realclean: clean rm -f *~ install: all - cp usbmuxd $(INSTALL_PREFIX)/sbin/ - cp usbmuxd.h $(INSTALL_PREFIX)/include/ + install -m 755 usbmuxd $(INSTALL_PREFIX)/sbin/ + # 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/ .PHONY: all clean realclean |