From 25273957cbfa16dc908c4a56f48f2c847d5e7ab2 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Fri, 24 Apr 2009 18:40:11 +0200 Subject: 1. renamed iphone.c to usbmux.c and iphone.h to usbmux.h 2. renamed iphone* function to usbmux* 3. got rid of iphone_error_t type and constants 4. indentation adjustments --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index cd3a0a0..535e028 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,8 @@ 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 +main.o: main.c usbmuxd-proto.h sock_stuff.h usbmux.h +usbmux.o: usbmux.c usbmux.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 @@ -19,7 +19,7 @@ libusbmuxd.so: libusbmuxd.o sock_stuff.o %.o: %.c $(CC) -o $@ $(CFLAGS) -c $< -usbmuxd: main.o sock_stuff.o iphone.o +usbmuxd: main.o sock_stuff.o usbmux.o $(CC) -o $@ $(LDFLAGS) $^ $(LIBS) iproxy: iproxy.o -- cgit v1.1-32-gdbae