From: Rick van Rein Date: Mon, 22 Feb 2016 13:22:20 +0000 (+0000) Subject: Setup submodule processing in GIT X-Git-Url: http://git.arpa2.org/?a=commitdiff_plain;h=2a04330eda11260b08ccb4f9e020ce47d4b0c129;p=quick-der Setup submodule processing in GIT --- diff --git a/Makefile b/Makefile index 16fd691..5d4abc0 100644 --- 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: diff --git a/WHEN-SIZE-MATTERS.MD b/WHEN-SIZE-MATTERS.MD index 17086a4..82384a9 100644 --- a/WHEN-SIZE-MATTERS.MD +++ b/WHEN-SIZE-MATTERS.MD @@ -1,4 +1,4 @@ -# Quick DER sizes: Sometimes small is bettar +# Quick DER sizes: Sometimes Small is Better Quick DER logo diff --git a/tool/Makefile b/tool/Makefile index 3c56b77..c966f02 100644 --- a/tool/Makefile +++ b/tool/Makefile @@ -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"