view Makefile @ 271:4a2fa10b8421 default tip

Publish DDS and measured frequencies through ZMQ
author Daniele Nicolodi <daniele.nicolodi@nist.gov>
date Sat, 15 Aug 2020 18:22:42 -0600
parents da38cbbc7ec8
children
line wrap: on
line source

# 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)