80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
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
|
|
|
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
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@ --libpath @srcdir@/vendor/tcl-packages
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
|