aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2020-12-07 19:26:29 -0500
committerCameron Katri <me@cameronkatri.com>2020-12-07 19:26:29 -0500
commit69ea2162275e8c22f9d28ccae19507d149420702 (patch)
tree63abe1bf078643f45b745d788b8e9cf989a2ee4a /Makefile
parenta007e33b447f468a0aa431325b8d0d322344118a (diff)
downloadsnaprestore-69ea2162275e8c22f9d28ccae19507d149420702.tar.gz
snaprestore-69ea2162275e8c22f9d28ccae19507d149420702.tar.zst
snaprestore-69ea2162275e8c22f9d28ccae19507d149420702.zip
Don't use an include directory
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a6255fb..8a06256 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
CC ?= aarch64-apple-darwin-clang
STRIP ?= aarch64-apple-darwin-strip
LDID ?= ldid
-CFLAGS ?= -arch arm64 -isysroot /home/cameron/Documents/SDK/iPhoneOS14.2.sdk -miphoneos-version-min=13.0 -Iinclude
+CFLAGS ?= -arch arm64 -isysroot /home/cameron/Documents/SDK/iPhoneOS14.2.sdk -miphoneos-version-min=13.0
INSTALL ?= install
FAKEROOT ?= fakeroot
PREFIX ?= /usr
@@ -16,7 +16,7 @@ all: build/snaprestore
build/snaprestore: src/snaprestore.m src/ent.xml
mkdir -p build
- $(CC) $(CFLAGS) -o build/snaprestore src/snaprestore.m -framework IOKit -framework Foundation -framework MobileCoreServices -fobjc-arc
+ $(CC) $(CFLAGS) -o build/snaprestore src/snaprestore.m -framework IOKit -framework Foundation -framework CoreServices -fobjc-arc
$(STRIP) build/snaprestore
$(LDID) -Ssrc/ent.xml build/snaprestore