Setup submodule processing in GIT
authorRick van Rein <rick@openfortress.nl>
Mon, 22 Feb 2016 13:22:20 +0000 (13:22 +0000)
committerRick van Rein <rick@openfortress.nl>
Mon, 22 Feb 2016 13:22:20 +0000 (13:22 +0000)
Makefile
WHEN-SIZE-MATTERS.MD
tool/Makefile

index 16fd691..5d4abc0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,7 @@
 SUBDIRS = lib tool test
 
 all:
+       git submodule update --init
        for d in $(SUBDIRS); do make -C "$$d" all ; done
 
 install:
index 17086a4..82384a9 100644 (file)
@@ -1,4 +1,4 @@
-# Quick DER sizes: Sometimes small is bettar
+# Quick DER sizes: Sometimes Small is Better
 
 <img alt="Quick DER logo" src="quick-der-logo.png" style="float: right;"/>
 
index 3c56b77..c966f02 100644 (file)
@@ -6,13 +6,14 @@ clean:
 
 install:
        #
-       # The hexio submodule did not arrive well in GIT
+       # Installing a good DER dumping utility for developers:
        #
-       # If you need a good DER dumping utility, check it out yourself:
        # https://github.com/vanrein/hexio
        #
-       @#NOTYET# install -m 0755 hexio/derdump.py "$(PREFIX)/bin/derdump"
+       # This tool will complain about DER errors -- but continue.
+       #
+       install -m 0755 hexio/derdump.py "$(PREFIX)/bin/derdump"
 
 uninstall:
-       @#NOTYET# rm -f "$(PREFIX)/bin/derdump"
+       rm -f "$(PREFIX)/bin/derdump"