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
+9 -6
View File
@@ -1,15 +1,18 @@
#Makefile to build unit tests
CC = gcc
BASEDIR = .
SRC_DIR = ../src
INCLUDES = -I../include -I.
DEFINES = -DBIG_ENDIAN=0 -DTEST -DTEST_DECODE
CFLAGS = -Wall -Iinclude -Itest -g $(DEFINES)
CFLAGS = -Wall $(INCLUDES) $(DEFINES) -g
TARGET = bacdcode
SRCS = src/bacdcode.c \
src/bacint.c \
src/bacstr.c \
test/ctest.c
SRCS = $(SRC_DIR)/bacdcode.c \
$(SRC_DIR)/bacint.c \
$(SRC_DIR)/bacstr.c \
$(SRC_DIR)/bacreal.c \
ctest.c
OBJS = ${SRCS:.c=.o}