btstack/test/Makefile
2011-09-03 21:04:27 +00:00

18 lines
412 B
Makefile

CC=g++
CPPUTEST_HOME = /usr/local/cpputest
CPPFLAGS=-I../include -I../src -I$(CPPUTEST_HOME)/include -g
LD_LIBRARIES = -L$(CPPUTEST_HOME)/lib -lCppUTest -lCppUTestExt
VPATH=../src
DEPS = remote_device_db_memory.h
OBJ = remote_device_db_memory_test.o remote_device_db_memory.o btstack_memory.o linked_list.o
remote-memory: $(OBJ)
$(CC) $(CPPFLAGS) -o $@ $^ $(LD_LIBRARIES)
clean:
rm -f remote-memory *.o