comparison 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
comparison
equal deleted inserted replaced
264:a40c8af8b028 265:da38cbbc7ec8
1 # makefile to compile test programs independently of LabWindowCVI
2
3 TESTS = test-ad9912 test-ad9956
4 CFLAGS = -Wall -Wextra -Werror
5
6 all: $(TESTS)
7
8 test-ad9912: xsocket.o ad9912.o
9
10 test-ad9956: xsocket.o ad9956.o
11
12 clean:
13 rm -f *.o $(TESTS)