Modified some of the unit tests for the new directory layout.
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
#Makefile to build unit tests
|
||||
CC = gcc
|
||||
BASEDIR = .
|
||||
CFLAGS = -Wall -I. -Itest -g -DBIG_ENDIAN=0 -DTEST -DTEST_BACINT
|
||||
DEFINES = -DBIG_ENDIAN=0 -DTEST -DTEST_BACINT
|
||||
CFLAGS = -Wall -Iinclude -Itest -g $(DEFINES)
|
||||
|
||||
TARGET = bacint
|
||||
|
||||
SRCS = bacint.c \
|
||||
bacstr.c \
|
||||
SRCS = src/bacint.c \
|
||||
src/bacstr.c \
|
||||
test/ctest.c
|
||||
|
||||
OBJS = ${SRCS:.c=.o}
|
||||
@@ -24,6 +25,6 @@ depend:
|
||||
${CC} -MM ${CFLAGS} *.c >> .depend
|
||||
|
||||
clean:
|
||||
rm -rf core ${OBJS} ${TARGET} *.bak
|
||||
rm -rf ${OBJS} ${TARGET}
|
||||
|
||||
include: .depend
|
||||
|
||||
Reference in New Issue
Block a user