Commit 5aac1733 authored by Robert Rosengren's avatar Robert Rosengren
Browse files

Possible to regenerate headers outside of srcdir

parent 76a715ee
...@@ -43,7 +43,7 @@ debug: ...@@ -43,7 +43,7 @@ debug:
$(MAKE) all CFLAGS="" AM_CPPFLAGS="-ggdb -DDEBUG" $(MAKE) all CFLAGS="" AM_CPPFLAGS="-ggdb -DDEBUG"
.c.h: .c.h:
scripts/MakeHeader.py $< @srcdir@/scripts/MakeHeader.py $<
cppcheck: cppcheck:
cppcheck -q -v . --enable=all -DHAVE_CGROUP -DHAVE_OPENVZ -DHAVE_TASKSTATS cppcheck -q -v . --enable=all -DHAVE_CGROUP -DHAVE_OPENVZ -DHAVE_TASKSTATS
...@@ -28,8 +28,8 @@ selfheader = '#include "' + name + '.h"' ...@@ -28,8 +28,8 @@ selfheader = '#include "' + name + '.h"'
out.write( "/* Do not edit this file. It was automatically generated. */" ) out.write( "/* Do not edit this file. It was automatically generated. */" )
out.write( "" ) out.write( "" )
out.write( "#ifndef HEADER_" + name ) out.write( "#ifndef HEADER_" + os.path.basename(name) )
out.write( "#define HEADER_" + name ) out.write( "#define HEADER_" + os.path.basename(name) )
is_blank = False is_blank = False
for line in file.readlines(): for line in file.readlines():
line = line[:-1] line = line[:-1]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment