view Makefile @ 266:dfbee05fe464

Fix beatnote sign measurement Breakage was caused by the change of the LO, HG, SR, enum values to use them as array indexes assigning to LO value 0 and thus flase in boolean context.
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Thu, 09 Jul 2015 23:05:43 +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)