Added makefile for building unit tests for OctetString Value object example.

Added Positive Integer Value and makefile for building unit tests.
Added OctetString Value and Positive Integer Value to unit test make file.
Thank you, Nikola Jelić!
This commit is contained in:
skarg
2015-11-24 19:18:47 +00:00
parent 9368d8eab5
commit ac90381279
5 changed files with 648 additions and 1 deletions
+11 -1
View File
@@ -206,7 +206,7 @@ wp: logfile test/wp.mak
( ./test/wp >> ${LOGFILE} )
$(MAKE) -s -C test -f wp.mak clean
objects: ai ao av bi bo bv csv lc lo lso lsp mso msv ms-input command
objects: ai ao av bi bo bv csv lc lo lso lsp mso msv ms-input osv piv command
ai: logfile demo/object/ai.mak
$(MAKE) -s -C demo/object -f ai.mak clean all
@@ -286,3 +286,13 @@ msv: logfile demo/object/msv.mak
$(MAKE) -s -C demo/object -f msv.mak clean all
( ./demo/object/multistate_value >> ${LOGFILE} )
$(MAKE) -s -C demo/object -f msv.mak clean
osv: logfile demo/object/osv.mak
$(MAKE) -s -C demo/object -f osv.mak clean all
( ./demo/object/octetstring_value >> ${LOGFILE} )
$(MAKE) -s -C demo/object -f osv.mak clean
piv: logfile demo/object/piv.mak
$(MAKE) -s -C demo/object -f piv.mak clean all
( ./demo/object/positiveinteger_value >> ${LOGFILE} )
$(MAKE) -s -C demo/object -f piv.mak clean