Updating unit tests.

This commit is contained in:
skarg
2007-10-30 14:08:59 +00:00
parent 63e331a01c
commit e51d11856d
10 changed files with 133 additions and 75 deletions
+12 -12
View File
@@ -1,17 +1,17 @@
#Makefile to build test case
CC = gcc
BASEDIR = .
#CFLAGS = -Wall -I.
# -g for debugging with gdb
#CFLAGS = -Wall -I. -g
CFLAGS = -Wall -I. -Itest -DBIG_ENDIAN=0 -DTEST -DTEST_I_HAVE -g
CC = gcc
SRC_DIR = ../src
INCLUDES = -I../include -I.
DEFINES = -DBIG_ENDIAN=0 -DTEST -DTEST_I_HAVE
SRCS = bacdcode.c \
bacint.c \
bacstr.c \
bigend.c \
ihave.c \
test/ctest.c
CFLAGS = -Wall $(INCLUDES) $(DEFINES) -g
SRCS = $(SRC_DIR)/bacdcode.c \
$(SRC_DIR)/bacint.c \
$(SRC_DIR)/bacstr.c \
$(SRC_DIR)/bacreal.c \
$(SRC_DIR)/ihave.c \
ctest.c
OBJS = ${SRCS:.c=.o}