-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (21 loc) · 993 Bytes
/
Makefile
File metadata and controls
30 lines (21 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
export ARCHS = armv7 armv7s arm64
export TARGET = iphone:latest:8.1
TWEAK_NAME = 1passwordinjector
# Enabled ARC - not doing any object creation in hooked methods
1passwordinjector_CFLAGS = -fobjc-arc
# Tweak/Hook
1passwordinjector_FILES = src/OnePasswordInjector.xm
1passwordinjector_FILES += src/UITextFieldHooks.xm
# Obj-C Requirements
1passwordinjector_FILES += src/onepassword-app-extension/OnePasswordExtension.m
1passwordinjector_FILES += src/OPInjectionButton.m
# Categories
1passwordinjector_FILES += src/categories/UITextField+HumanInput.m
1passwordinjector_FILES += src/categories/UIAlertView+Blocks.m
1passwordinjector_FILES += src/categories/UIView+FindViewController.m
1passwordinjector_FRAMEWORKS = UIKit WebKit MobileCoreServices CoreGraphics
BUNDLE_NAME = 1passwordinjector_bundle
1passwordinjector_bundle_INSTALL_PATH = /Library/MobileSubstrate/DynamicLibraries
include theos/makefiles/common.mk
include $(THEOS_MAKE_PATH)/tweak.mk
include theos/makefiles/bundle.mk