-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (17 loc) · 746 Bytes
/
Makefile
File metadata and controls
22 lines (17 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
TARGET := iphone:clang
SDKVERSION = 7.0
TARGET_IPHONEOS_DEPLOYMENT_VERSION = 7.0
ARCHS = armv7 armv7s arm64
ADDITIONAL_OBJCFLAGS = -fobjc-arc
TARGET_CODESIGN_FLAGS = -S
#SCHEMA=debug
include theos/makefiles/common.mk
LIBRARY_NAME = libbedistributedmessagingcenter
libbedistributedmessagingcenter_FILES = BEDistributedMessagingCenter.m
libbedistributedmessagingcenter_PRIVATE_FRAMEWORKS = AppSupport
include $(THEOS_MAKE_PATH)/library.mk
prepare::
$(ECHO_NOTHING)cp -a "$(THEOS_OBJ_DIR_NAME)/$(LIBRARY_NAME)$(TARGET_LIB_EXT)" "$(THEOS)/lib/"$(ECHO_END);
internal-stage::
$(ECHO_NOTHING)mkdir -p "$(THEOS_STAGING_DIR)/usr/include"$(ECHO_END)
$(ECHO_NOTHING)cp -a BEDistributedMessagingCenter.h "$(THEOS_STAGING_DIR)/usr/include"$(ECHO_END)