mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-07 09:55:45 +00:00
forgot to add new Makefile.in
This commit is contained in:
parent
6ee849a7da
commit
5c3b21f428
25
example/Makefile.in
Normal file
25
example/Makefile.in
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
CC = @CC@
|
||||||
|
LDFLAGS = @LDFLAGS@ -lBTstack -L../src
|
||||||
|
CPPFLAGS = @CPPFLAGS@ -I../include
|
||||||
|
prefix = @prefix@
|
||||||
|
|
||||||
|
all: test mitm rfcomm
|
||||||
|
|
||||||
|
test: test.c
|
||||||
|
$(CC) $(CPPFLAGS) -o $@ $< $(LDFLAGS)
|
||||||
|
@USE_LDID@ export CODESIGN_ALLOCATE=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate ; ldid -S $@
|
||||||
|
|
||||||
|
mitm: mitm.c
|
||||||
|
$(CC) $(CPPFLAGS) -o $@ $< $(LDFLAGS)
|
||||||
|
@USE_LDID@ export CODESIGN_ALLOCATE=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate ; ldid -S $@
|
||||||
|
|
||||||
|
rfcomm: rfcomm.c
|
||||||
|
$(CC) $(CPPFLAGS) -o $@ $< $(LDFLAGS)
|
||||||
|
@USE_LDID@ export CODESIGN_ALLOCATE=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate ; ldid -S $@
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm test mitm rfcomm
|
||||||
|
|
||||||
|
install:
|
||||||
|
echo "nothing to be done"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user