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
+10 -10
View File
@@ -3,16 +3,16 @@ CC = gcc
BASEDIR = .
#CFLAGS = -Wall -I.
# -g for debugging with gdb
#CFLAGS = -Wall -I. -g
CFLAGS = -Wall -I. -Itest -DBIG_ENDIAN=0 -DTEST -DTEST_BACNET_APPLICATION_DATA -g
DEFINES = -DBIG_ENDIAN=0 -DTEST -DTEST_BACNET_APPLICATION_DATA
CFLAGS = -Wall -Iinclude -Itest -g $(DEFINES)
SRCS = bacdcode.c \
bacint.c \
bacstr.c \
bacapp.c \
datetime.c \
bactext.c \
indtext.c \
SRCS = src/bacdcode.c \
src/bacint.c \
src/bacstr.c \
src/bacapp.c \
src/datetime.c \
src/bactext.c \
src/indtext.c \
test/ctest.c
OBJS = ${SRCS:.c=.o}
@@ -32,6 +32,6 @@ depend:
${CC} -MM ${CFLAGS} *.c >> .depend
clean:
rm -rf core ${TARGET} $(OBJS) *.bak *.1 *.ini
rm -rf ${TARGET} $(OBJS)
include: .depend