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
+8 -8
View File
@@ -1,13 +1,13 @@
#Makefile to build test case
CC = gcc
BASEDIR = .
#CFLAGS = -Wall -I.
# -g for debugging with gdb
#CFLAGS = -Wall -I. -g
CFLAGS = -Wall -I. -Itest -DTEST -DTEST_DATE_TIME -g
CC = gcc
SRC_DIR = ../src
INCLUDES = -I../include -I.
DEFINES = -DBIG_ENDIAN=0 -DTEST -DTEST_DATE_TIME
SRCS = datetime.c \
test/ctest.c
CFLAGS = -Wall $(INCLUDES) $(DEFINES) -g
SRCS = $(SRC_DIR)/datetime.c \
ctest.c
OBJS = ${SRCS:.c=.o}