Skip to content

Instantly share code, notes, and snippets.

View steelwheels's full-sized avatar

Steel Wheels Project steelwheels

View GitHub Profile
@steelwheels
steelwheels / install_ios.mk
Last active December 3, 2016 23:40
Makefile to install iOS framework for iPhone-device and iPhone-simulator
#
# install_ios.mk
#
# Reference URL: http://stackoverflow.com/questions/28652650/how-to-build-cocoa-touch-framework-for-i386-and-x86-64-architecture
#
INSTALL_PATH ?= $(HOME)/local/Frameworks
OS_DIR = $(INSTALL_PATH)/iphoneos
SIM_DIR = $(INSTALL_PATH)/iphonesimulator
@steelwheels
steelwheels / install.mk
Created August 14, 2014 03:25
The script to install static library for the iOS
#
# install.mk
#
INSTALL_PATH = $(HOME)/local
LIB_NAME = lib${PROJECT_NAME}.a
CONFIGURATION = Release
build_command = xcodebuild build -target $(PROJECT_NAME) \
-project $(PROJECT_NAME).xcodeproj \