=== modified file 'Makefile' --- Makefile 2011-03-31 10:38:40 +0000 +++ Makefile 2011-03-24 00:03:41 +0000 @@ -81,15 +81,6 @@ %.3: %.3.sh sh $< >$@ -TESTSOURCES=$(wildcard t/*.c) -TESTFILES=$(TESTSOURCES:.c=.t) - -t/%.t: t/%.c $(LIBRARY) - $(LIBTOOL) --mode=link --tag=CC gcc -o $@ $^ - -test: $(TESTFILES) - prove -e "" - clean: clean-built clean-built: === removed directory 't' === removed file 't/01base.c' --- t/01base.c 2011-03-31 10:38:40 +0000 +++ t/01base.c 1970-01-01 00:00:00 +0000 @@ -1,20 +0,0 @@ -#include -#include "termkey.h" - -int main(int argc, char *argv[]) -{ - TermKey *tk; - - printf("1..2\n"); - - tk = termkey_new(0, TERMKEY_FLAG_NOTERMIOS); - - printf(tk ? "" : "not "); - printf("ok 1 - termkey_new\n"); - - termkey_destroy(tk); - - printf("ok 2 - termkey_free\n"); - - return 0; -}