From fb42b6af9624df95c305ea69c031215c1384c215 Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Wed, 21 Oct 2015 07:53:36 +0200 Subject: [PATCH] Remove no longer needed build.sh in testers --- testers/build.sh | 8 -------- 1 file changed, 8 deletions(-) delete mode 100755 testers/build.sh diff --git a/testers/build.sh b/testers/build.sh deleted file mode 100755 index 96e0d4e..0000000 --- a/testers/build.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -TRLIBS="-ltrbase -ltrhashing -ltrio -ltrdata -ltrevent -ltrcomm" -#TRLIBS="/usr/local/lib/libtrcomm.a /usr/local/lib/libtrevent.a /usr/local/lib/libtrdata.a /usr/local/lib/libtrio.a /usr/local/lib/libtrhashing.a /usr/local/lib/libtrbase.a" -LIBS="-lcrypto -lssl -lrt -luuid" -gcc ${CFLAGS} -std=c99 -c -o test_handler.o test_handler.c -gcc ${CFLAGS} -std=c99 -I/usr/local/include -L/usr/local/lib ${LIBS} -o testserver2 testserver2.c test_handler.o ${TRLIBS} -gcc ${CFLAGS} -std=c99 -I/usr/local/include -L/usr/local/lib ${LIBS} -o testtcp testclient.c ${TRLIBS} -gcc ${CFLAGS} -std=c99 -I/usr/local/include -L/usr/local/lib ${LIBS} -DUDP=1 -o testudp testclient.c ${TRLIBS}