This adds an "install" target to the Makefile. We intentionally don't make install depend on "all" or another build target, to avoid an undesired rebuild. Signed-off-by: Michael Buesch <mb@xxxxxxxxx> Index: wireless-regdb/Makefile =================================================================== --- wireless-regdb.orig/Makefile 2008-12-26 23:33:19.000000000 +0100 +++ wireless-regdb/Makefile 2008-12-26 23:38:54.000000000 +0100 @@ -1,4 +1,7 @@ -.PHONY: all clean +# Install prefix +PREFIX = /usr + +.PHONY: all clean install all: regulatory.bin key.pub.pem @@ -13,3 +16,6 @@ key.priv.pem: openssl genrsa -out key.priv.pem 2048 + +install: + -install -o 0 -g 0 -m 644 regulatory.bin $(PREFIX)/lib/crda/regulatory.bin -- Greetings, Michael. -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html