aboutsummaryrefslogtreecommitdiffstats
path: root/amalgamate/merge_all.py
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2016-08-28 14:46:44 +0900
committeripknHama <ipknhama@gmail.com>2016-08-28 14:46:44 +0900
commitc44bcf2dc3f6eec4db92c169523c1dc587666a87 (patch)
tree378cb4ec428466900d3eeb04e79f2a98a6a00420 /amalgamate/merge_all.py
parent967adf0de55afcb52881cdb1a7b16788c7c283db (diff)
downloadcrow-c44bcf2dc3f6eec4db92c169523c1dc587666a87.tar.gz
crow-c44bcf2dc3f6eec4db92c169523c1dc587666a87.zip
Update amalgamate
Diffstat (limited to 'amalgamate/merge_all.py')
-rw-r--r--amalgamate/merge_all.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/amalgamate/merge_all.py b/amalgamate/merge_all.py
index 273ea87..b1e5170 100644
--- a/amalgamate/merge_all.py
+++ b/amalgamate/merge_all.py
@@ -11,7 +11,7 @@ if len(sys.argv) > 1:
OUTPUT = 'crow_all.h'
re_depends = re.compile('^#include "(.*)"', re.MULTILINE)
-headers = [x.rsplit('/', 1)[-1] for x in glob(pt.join(header_path, '*.h'))]
+headers = [x.rsplit('/', 1)[-1] for x in glob(pt.join(header_path, '*.h*'))]
print(headers)
edges = defaultdict(list)
for header in headers: