-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (17 loc) · 739 Bytes
/
Makefile
File metadata and controls
24 lines (17 loc) · 739 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
TARGET := iphone:clang::5.0
ARCHS := armv7 arm64
ifdef CCC_ANALYZER_OUTPUT_FORMAT
TARGET_CXX = $(CXX)
TARGET_LD = $(TARGET_CXX)
endif
ADDITIONAL_CFLAGS += -g -fobjc-arc -fvisibility=hidden
ADDITIONAL_LDFLAGS += -g -fobjc-arc -x c /dev/null -x none
TWEAK_NAME = GmailSender GmailSenderSettings
GmailSender_FILES = Tweak.x
GmailSenderSettings_FILES = Settings.x
GmailSenderSettings_PRIVATE_FRAMEWORKS = Preferences
include theos/makefiles/common.mk
include $(THEOS_MAKE_PATH)/tweak.mk
after-stage::
$(ECHO_NOTHING)find $(THEOS_STAGING_DIR) \( -iname '*.plist' -or -iname '*.strings' \) -execdir plutil -convert binary1 {} \;$(ECHO_END)
$(ECHO_NOTHING)find $(THEOS_STAGING_DIR) -d -name '*.dSYM' -execdir rm -rf {} \;$(ECHO_END)