view Makefile @ 267:1de805d2d37a

Reuse beatnote enum also for dedrift reference selection
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Thu, 09 Jul 2015 23:08:22 +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)