Fixed the unit tests after integration of property-list property and device-object-property-reference properties. Thank you for noticing it was broken, Nikola Jelić, and for sending in fixes.

This commit is contained in:
skarg
2015-11-04 16:53:21 +00:00
parent b5e860dbe4
commit 8a48241e14
31 changed files with 96 additions and 88 deletions
+5 -4
View File
@@ -13,6 +13,7 @@ SRCS = $(SRC_DIR)/bacdcode.c \
$(SRC_DIR)/datetime.c \
$(SRC_DIR)/lighting.c \
$(SRC_DIR)/bacapp.c \
$(SRC_DIR)/bacdevobjpropref.c \
$(SRC_DIR)/bactext.c \
$(SRC_DIR)/indtext.c \
$(SRC_DIR)/wp.c \
@@ -21,19 +22,19 @@ SRCS = $(SRC_DIR)/bacdcode.c \
TARGET = wp
all: ${TARGET}
OBJS = ${SRCS:.c=.o}
${TARGET}: ${OBJS}
${CC} -o $@ ${OBJS}
${CC} -o $@ ${OBJS}
.c.o:
${CC} -c ${CFLAGS} $*.c -o $@
depend:
rm -f .depend
${CC} -MM ${CFLAGS} *.c >> .depend
clean:
rm -rf core ${TARGET} $(OBJS) *.bak *.1 *.ini