Pick up custom override schema for generating standalone page if custom cve config exists.
diff --git a/Makefile b/Makefile
index 93ebf29..8d0f319 100644
--- a/Makefile
+++ b/Makefile
@@ -7,8 +7,9 @@
TARGETS := $(OUT)/index.html $(CSS)/sprite.svg $(CSS)/min.css $(CSS)/icns.css $(CSS)/logo.png $(CSS)/logo.gif $(JS)/util.js $(JS)/editor.js $(JS)/cvss.json $(JS)/cwe-frequent.json
-$(OUT)/index.html: ./scripts/standalone.js ./config/conf-standalone.js ./default/* ./default/cve/* ./views/*
- node $<
+$(OUT)/index.html: ./scripts/standalone.js ./config/conf-standalone.js ./[cd][ue][sf]*[mt]/cve/* ./views/*
+ if [ -e "./custom/cve/conf.js" ]; then node $< custom ; else node $< ; fi
+
$(OUT)/js:
mkdir -p $(OUT)/js