mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-10 00:41:06 +00:00
16 lines
383 B
Makefile
16 lines
383 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
|
|
|
|
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
|
|
|