#CC=icc
CFLAGS=-Wall -pedantic -ansi -ggdb
#CFLAGS=-O3 -tpp7 -march=pentium4 -ansi
LDFLAGS=-lbluetooth -lm

all: sbc.o test sbc-test

clean:
	rm -rf *.o core test sbc-test

sbc.o: sbc.c sbc.h

test.o: test.c sbc.h

test: test.o sbc.o

avdtp.h: avdtp-signalling.h

sbc-test.o: sbc-test.c sbc.h

sbc-test: sbc-test.o sbc.o

