mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-09 15:39:08 +00:00
18 lines
359 B
Makefile
18 lines
359 B
Makefile
CC = @CC@
|
|
LDFLAGS = @LDFLAGS@
|
|
CPPFLAGS = @CPPFLAGS@
|
|
prefix = @prefix@
|
|
|
|
all: PatchBlueTool
|
|
|
|
PatchBlueTool: PatchBlueTool.c
|
|
$(CC) $(CPPFLAGS) -o $@ $< $(LDFLAGS)
|
|
@USE_LDID@ export CODESIGN_ALLOCATE=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate ; ldid -S $@
|
|
|
|
clean:
|
|
rm -f PatchBlueTool
|
|
|
|
install:
|
|
echo "nothing to be done"
|
|
|