initial commit to new repo

This commit is contained in:
Nicole Faerber 2021-02-14 18:03:13 +01:00
parent ccdb239b00
commit adbc36ad71
131 changed files with 52765 additions and 1 deletions

16
linux-bt/Makefile Normal file
View file

@ -0,0 +1,16 @@
CFLAGS = -Wall -O2
SRC = l2cap_client.c
PRG = l2cap_client
OBJS = $(SRC:.c=.o)
all: $(PRG)
$(PRG): $(OBJS)
$(CC) -o $(PRG) $(OBJS) -lbluetooth
%.o: %c
$(CC) -c $(CFLAGS) -o $@ $<
clean:
rm -f $(OBJS) $(PRG)