Updated the unit tests.

This commit is contained in:
skarg
2007-10-30 04:32:11 +00:00
parent cf5587c29d
commit 63e331a01c
7 changed files with 68 additions and 59 deletions
+7 -4
View File
@@ -1,12 +1,15 @@
#Makefile to build unit tests
CC = gcc
BASEDIR = .
CFLAGS = -Wall -I. -Itest -g -DTEST -DTEST_BACSTR
SRC_DIR = ../src
INCLUDES = -I../include -I.
DEFINES = -DBIG_ENDIAN=0 -DTEST -DTEST_BACSTR
CFLAGS = -Wall $(INCLUDES) $(DEFINES) -g
TARGET = bacstr
SRCS = bacstr.c \
test/ctest.c
SRCS = $(SRC_DIR)/bacstr.c \
ctest.c
OBJS = ${SRCS:.c=.o}