initial commit to new repo
This commit is contained in:
parent
ccdb239b00
commit
adbc36ad71
131 changed files with 52765 additions and 1 deletions
16
linux-bt/Makefile
Normal file
16
linux-bt/Makefile
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue