Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
6b739d91
Commit
6b739d91
authored
Apr 30, 2012
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #78 from MobiRuby/remove_ios_tasks
remove ios compile tasks
parents
8982e6b5
af4de46f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
24 deletions
+0
-24
Makefile
Makefile
+0
-24
No files found.
Makefile
View file @
6b739d91
# makefile discription.
# basic build file for mruby
# library for iOS
IOSLIB
:=
$(RITEVM)
-ios
.a
IOSSIMLIB
:=
$(RITEVM)
-iossim
.a
IOSDEVLIB
:=
$(RITEVM)
-iosdev
.a
IOSSIMCC
:=
xcrun
-sdk
iphoneos llvm-gcc-4.2
-arch
i386
-isysroot
"/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.0.sdk/"
IOSDEVCC
:=
xcrun
-sdk
iphoneos llvm-gcc-4.2
-arch
armv7
-isysroot
"/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/"
# compiler, linker (gcc)
CC
=
gcc
LL
=
gcc
...
...
@@ -31,23 +24,6 @@ endif
all
:
@
$(MAKE)
-C
tools/mruby
$(MAKE_FLAGS)
# make library for iOS
.PHONY
:
ios
ios
:
$(IOSLIB)
$(IOSLIB)
:
$(IOSSIMLIB) $(IOSDEVLIB)
lipo
-arch
i386
$(IOSSIMLIB)
-arch
armv7
$(IOSDEVLIB)
-create
-output
$(IOSLIB)
$(IOSSIMLIB)
:
$(MAKE)
clean
-C
src
$(MAKE_FLAGS)
$(MAKE)
-C
src
$(MAKE_FLAGS)
CC
=
"
$(IOSSIMCC)
"
LL
=
"
$(IOSSIMCC)
"
cp
$(LIB)
$(IOSSIMLIB)
$(IOSDEVLIB)
:
$(MAKE)
clean
-C
src
$(MAKE_FLAGS)
$(MAKE)
-C
src
$(MAKE_FLAGS)
CC
=
"
$(IOSDEVCC)
"
LL
=
"
$(IOSDEVCC)
"
cp
$(LIB)
$(IOSDEVLIB)
# clean up
.PHONY
:
clean
clean
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment