aboutsummaryrefslogtreecommitdiffstats
path: root/amalgamate/merge_all.py
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2016-09-21 23:17:29 +0900
committeripknHama <ipknhama@gmail.com>2016-09-21 23:17:29 +0900
commit64109072344d20a2959bff0e6af32ef6b336753c (patch)
tree6c79688bf79130d7cffea1d6cc49e46dd461747d /amalgamate/merge_all.py
parent3081e4e1a82a4efd8feff68850c4cc04af230cd7 (diff)
downloadcrow-64109072344d20a2959bff0e6af32ef6b336753c.tar.gz
crow-64109072344d20a2959bff0e6af32ef6b336753c.zip
Update amalgamate
Diffstat (limited to 'amalgamate/merge_all.py')
-rw-r--r--amalgamate/merge_all.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/amalgamate/merge_all.py b/amalgamate/merge_all.py
index b1e5170..afa0124 100644
--- a/amalgamate/merge_all.py
+++ b/amalgamate/merge_all.py
@@ -12,6 +12,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 += ['crow/' + x.rsplit('/', 1)[-1] for x in glob(pt.join(header_path, 'crow/*.h*'))]
print(headers)
edges = defaultdict(list)
for header in headers: