61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
nano.tcl.h: @srcdir@/nano.tcl Makefile
od -A n -v -t xC < '@srcdir@/nano.tcl' > nano.tcl.h.new.1
sed 's@ *@@g;s@..@0x&, @g' < nano.tcl.h.new.1 > nano.tcl.h.new.2
rm -f nano.tcl.h.new.1
mv nano.tcl.h.new.2 nano.tcl.h
test: @EXTENSION_TARGET@ pkgIndex.tcl
@srcdir@/test/test.tcl .
ifeq (@ENABLE_COVERAGE@,true)
coverage.dir: test
rm -f nano-coverage.info
lcov --capture --directory . --output-file nano-coverage.info
mkdir coverage.dir
genhtml nano-coverage.info --output-directory coverage.dir
|
|
|
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
nano.tcl.h: @srcdir@/nano.tcl Makefile
od -A n -v -t xC < '@srcdir@/nano.tcl' > nano.tcl.h.new.1
sed 's@ *@@g;s@..@0x&, @g' < nano.tcl.h.new.1 > nano.tcl.h.new.2
rm -f nano.tcl.h.new.1
mv nano.tcl.h.new.2 nano.tcl.h
test: @EXTENSION_TARGET@ pkgIndex.tcl
@srcdir@/test/test.tcl --libpath . --libpath @TCLLIB_PATH@
ifeq (@ENABLE_COVERAGE@,true)
coverage.dir: test
rm -f nano-coverage.info
lcov --capture --directory . --output-file nano-coverage.info
mkdir coverage.dir
genhtml nano-coverage.info --output-directory coverage.dir
|