Modified some of the unit tests for the new directory layout.

This commit is contained in:
skarg
2007-10-10 03:53:39 +00:00
parent a2506536ed
commit b8fece2886
8 changed files with 54 additions and 53 deletions
+6 -5
View File
@@ -1,13 +1,14 @@
#Makefile to build unit tests
CC = gcc
BASEDIR = .
CFLAGS = -Wall -I. -Itest -g -DBIG_ENDIAN=0 -DTEST -DTEST_DECODE
DEFINES = -DBIG_ENDIAN=0 -DTEST -DTEST_DECODE
CFLAGS = -Wall -Iinclude -Itest -g $(DEFINES)
TARGET = bacdcode
SRCS = bacdcode.c \
bacint.c \
bacstr.c \
SRCS = src/bacdcode.c \
src/bacint.c \
src/bacstr.c \
test/ctest.c
OBJS = ${SRCS:.c=.o}
@@ -25,6 +26,6 @@ depend:
${CC} -MM ${CFLAGS} *.c >> .depend
clean:
rm -rf core ${OBJS} ${TARGET} *.bak
rm -rf ${OBJS} ${TARGET}
include: .depend