From a8d088cf480f306fc5724a7590a59d61d62af382 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Fri, 27 Mar 2009 01:31:41 +0100 Subject: Makefile: install target added --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3971798..ece8ebb 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.1-32-gdbae