CFLAGS += -Wall -Werror

all: ac97regtest

ac97regtest: ac97regtest.o
	$(CC) $(CFLAGS) -o $@ $^

clean:
	rm -f ac97regtest *.o *~ *.bak
