diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2,6 +2,7 @@ TARGETS=usbmuxd iproxy testclient CFLAGS=-Wall -g -DDEBUG LIBS=-lpthread -lusb -lrt LDFLAGS= +INSTALL_PREFIX=/usr all: $(TARGETS) @@ -28,4 +29,8 @@ clean: realclean: clean rm -f *~ +install: all + cp usbmuxd $(INSTALL_PREFIX)/sbin/ + cp usbmuxd.h $(INSTALL_PREFIX)/include/ + .PHONY: all clean realclean |