17ebf954cS[email protected]CC = g++ 27ebf954cS[email protected] 38e8dfe94SMatthias Ringwald# Requirements: cpputest.github.io 47ebf954cS[email protected] 57ebf954cS[email protected]BTSTACK_ROOT = ../.. 67ebf954cS[email protected] 7652b0339SMatthias RingwaldCFLAGS = -g -Wall -I.. -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/include 857fe2af8SMatthias RingwaldLDFLAGS += -lCppUTest -lCppUTestExt 957fe2af8SMatthias Ringwald 1057fe2af8SMatthias RingwaldVPATH += ${BTSTACK_ROOT}/src 11*3edc84c5SMatthias RingwaldVPATH += ${BTSTACK_ROOT}/src/classic 12*3edc84c5SMatthias RingwaldVPATH += ${BTSTACK_ROOT}/platform/posix/src 137ebf954cS[email protected] 147ebf954cS[email protected]COMMON = \ 1557fe2af8SMatthias Ringwald sdp_util.c \ 16e04f4e1fSMatthias Ringwald hci_dump.c \ 1757fe2af8SMatthias Ringwald utils.c 187ebf954cS[email protected] 197ebf954cS[email protected]COMMON_OBJ = $(COMMON:.c=.o) 207ebf954cS[email protected] 217ebf954cS[email protected]all: des_iterator_test 227ebf954cS[email protected] 237ebf954cS[email protected]des_iterator_test: ${COMMON_OBJ} des_iterator_test.c 247ebf954cS[email protected] ${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@ 257ebf954cS[email protected] 268e8dfe94SMatthias Ringwaldtest: all 2757fe2af8SMatthias Ringwald ./des_iterator_test 287ebf954cS[email protected] 297ebf954cS[email protected]clean: 3057fe2af8SMatthias Ringwald rm -f des_iterator_test *.o 317ebf954cS[email protected] rm -rf *.dSYM 327ebf954cS[email protected]