mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-02-12 03:39:54 +00:00
13 lines
298 B
Makefile
13 lines
298 B
Makefile
|
CC=gcc
|
||
|
CPPFLAGS=-I../include -I../src -g
|
||
|
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_device_db_memory_test: $(OBJ)
|
||
|
$(CC) $(CPPFLAGS) -o $@ $^
|
||
|
|
||
|
clean:
|
||
|
rm -f remote_device_db_memory_test *.o
|
||
|
|