GList - double linked abstract list implementation
[tedtools.git] / Makefile
index df63daf..6fc788f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -10,8 +10,9 @@ LIB=-g -L. -ltedtools -lm
 
 OBJS=tlog.o tmalloc.o tools.o prs_hmap.o sfxstr.o \
        regis.o prs_inf.o shmem.o tcp.o udp.o connpool.o \
-       psort.o flatdb.o tbtree.o
-PROGS=sfxtest hextest inftest kilter psortex flatdbtest tbtreetest gendata memtest
+       psort.o flatdb.o tbtree.o glist.o
+PROGS=sfxtest hextest inftest kilter psortex flatdbtest \
+       tbtreetest gendata memtest glisttest
 
 .SUFFIXES: .o.c
 
@@ -34,7 +35,7 @@ test: all
        @[ -d results ] || mkdir results  
        @[ -d diffs ] || mkdir diffs  
        @[ -d temp ] || mkdir temp  
-       @for FILE in btree flatdb hex inf mem psort sfxmem ; do \
+       @for FILE in btree flatdb hex inf mem psort sfxmem glist ; do \
                echo -n $$FILE "        ........ " ; \
                if sh tests/$$FILE > results/$$FILE 2>results/$$FILE.errout && diff -c expected/$$FILE results/$$FILE > diffs/$$FILE ; then \
                        echo ok ; \