mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-06 07:00:59 +00:00
18 lines
412 B
Makefile
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
|
|
|