aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index b3c6cc8..ba356ea 100644
--- a/README.md
+++ b/README.md
@@ -60,6 +60,17 @@ $(DRIVER_TARGET): $(DRIVER_SOURCES)
Build it with: `make Driver.sys DPP_ROOT=[path/to/this/repository]`
+It also possible to (self-)sign your driver and install your driver with:
+
+```make
+install: $(DRIVER_TARGET)
+ $(MAKE) -C $(DPP_ROOT) -f Makefile.external \
+ DESTDIR="$(DESTDIR)" \
+ TARGETS="$(DRIVER_TARGET)" \
+ DRIVER_DIR="$(CURDIR)" \
+ install-sign
+```
+
## Thanks!
- [Zeranoe](https://github.com/Zeranoe/mingw-w64-build) for the Mingw64 build script