view Makefile @ 270:a451d4618dbf

Simplify code moving the update of the DDS frequency display to the wrappers
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Fri, 10 Jul 2015 15:21:15 +0200
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)