btstack/test/Makefile
2011-11-15 13:32:34 +00:00

17 lines
406 B
Makefile

CC=g++
CPPFLAGS= -g -I. -I../include -I../src -I$(CPPUTEST_HOME)/include
LD_LIBRARIES = -L$(CPPUTEST_HOME)/lib -lCppUTest -lCppUTestExt
VPATH=../src
DEPS = remote_device_db_memory.h
OBJ = memory_pool.o 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 ../src/*.o