# makefile for fdatest program
all: fdatest

fdatest:
	gcc -Wall -DDEBUG -o fdatest fdatest.c fda.c
clean:
	@rm -f fdatest core
