Makefile for Patch Tool

This commit is contained in:
matthias.ringwald 2010-06-12 19:43:38 +00:00
parent d87ec4a871
commit 74f2f8362f

17
PatchBlueTool/Makefile.in Normal file
View File

@ -0,0 +1,17 @@
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"