Mercurial > hg > fxanalyse
diff Makefile @ 265:da38cbbc7ec8
Add DDS clients test code
To verify the portabiolity of the clients code and to make testing
easier the test code is independent of the CVI environment and
runtime.
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Sun, 21 Jun 2015 14:44:33 +0200 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Sun Jun 21 14:44:33 2015 +0200 @@ -0,0 +1,13 @@ +# makefile to compile test programs independently of LabWindowCVI + +TESTS = test-ad9912 test-ad9956 +CFLAGS = -Wall -Wextra -Werror + +all: $(TESTS) + +test-ad9912: xsocket.o ad9912.o + +test-ad9956: xsocket.o ad9956.o + +clean: + rm -f *.o $(TESTS)