Fixed objects list helper and unit test (#86)

Co-authored-by: Steve Karg <skarg@users.sourceforge.net>
This commit is contained in:
Steve Karg
2020-05-15 15:41:02 -05:00
committed by GitHub
parent 094ac1db00
commit 3553ae56c2
5 changed files with 155 additions and 109 deletions
+6 -1
View File
@@ -6,7 +6,7 @@ all: abort address arf awf bvlc bvlc6 bacapp bacdcode bacerror bacint bacstr \
cov crc datetime dcc event filename fifo getevent iam ihave \
indtext keylist key lighting lso memcopy npdu proplist ptransfer \
rd reject ringbuf rp rpm sbuf timesync vmac \
bbmd bbmd6 \
bbmd bbmd6 objects \
whohas whois wp
clean: logfile
@@ -171,6 +171,11 @@ npdu: logfile npdu.mak
( ./npdu >> ${LOGFILE} )
$(MAKE) -s -f npdu.mak clean
objects: logfile bacnet/basic/object/objects/Makefile
$(MAKE) -s -C bacnet/basic/object/objects/ clean all
( ./bacnet/basic/object/objects/unittest >> ${LOGFILE} )
$(MAKE) -s -C bacnet/basic/object/objects/ clean
proplist: logfile proplist.mak
$(MAKE) -s -f proplist.mak clean all
( ./proplist >> ${LOGFILE} )