view Makefile @ 269:3f395eab72eb

Whitespace
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Fri, 10 Jul 2015 13:40:36 +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)