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
8a5943f2
Commit
8a5943f2
authored
Apr 19, 2012
by
Goro Kikuchi
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1 from mattn/fix_makefile
fix Makefile: quoted CC/LL are heap up to each Makefiles.
parents
cfa6ca8d
975031cd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
5 deletions
+7
-5
Makefile
Makefile
+1
-1
mrblib/Makefile
mrblib/Makefile
+2
-1
src/Makefile
src/Makefile
+2
-1
tools/mrbc/Makefile
tools/mrbc/Makefile
+1
-1
tools/mruby/Makefile
tools/mruby/Makefile
+1
-1
No files found.
Makefile
View file @
8a5943f2
...
...
@@ -56,7 +56,7 @@ else
CFLAGS
=
-O3
endif
ALL_CFLAGS
=
-Wall
-Werror-implicit-function-declaration
$(CFLAGS)
MAKE_FLAGS
=
--no-print-directory
CC
=
"
$(CC)
"
LL
=
"
$(LL)
"
MAKE_FLAGS
=
--no-print-directory
CC
=
$(CC)
LL
=
$(LL)
##############################
# generic build targets, rules
...
...
mrblib/Makefile
View file @
8a5943f2
...
...
@@ -15,6 +15,7 @@ MRBS := $(MRB1)
# C compiler (gcc)
CC
=
gcc
LL
=
gcc
DEBUG_MODE
=
1
ifeq
($(DEBUG_MODE),1)
CFLAGS
=
-g
...
...
@@ -23,7 +24,7 @@ CFLAGS = -O3
endif
INCLUDES
=
-I
../src
-I
../include
ALL_CFLAGS
=
-Wall
-Werror-implicit-function-declaration
$(CFLAGS)
MAKE_FLAGS
=
--no-print-directory
CC
=
"
$(CC)
"
LL
=
"
$(LL)
"
MAKE_FLAGS
=
--no-print-directory
CC
=
$(CC)
LL
=
$(LL)
# mruby compiler
ifeq
($(OS),Windows_NT)
...
...
src/Makefile
View file @
8a5943f2
...
...
@@ -34,6 +34,7 @@ INCLUDES = -I$(BASEDIR) -I$(BASEDIR)/../include
# compiler, linker (gcc)
CC
=
gcc
LL
=
gcc
AR
=
ar
YACC
=
bison
...
...
@@ -44,7 +45,7 @@ else
CFLAGS
=
-O3
endif
ALL_CFLAGS
=
-Wall
-Werror-implicit-function-declaration
$(CFLAGS)
MAKE_FLAGS
=
--no-print-directory
CC
=
"
$(CC)
"
LL
=
"
$(LL)
"
MAKE_FLAGS
=
--no-print-directory
CC
=
$(CC)
LL
=
$(LL)
##############################
# generic build targets, rules
...
...
tools/mrbc/Makefile
View file @
8a5943f2
...
...
@@ -37,7 +37,7 @@ else
CFLAGS
=
-O3
endif
ALL_CFLAGS
=
-Wall
-Werror-implicit-function-declaration
$(CFLAGS)
MAKE_FLAGS
=
--no-print-directory
CC
=
"
$(CC)
"
LL
=
"
$(LL)
"
MAKE_FLAGS
=
--no-print-directory
CC
=
$(CC)
LL
=
$(LL)
##############################
# generic build targets, rules
...
...
tools/mruby/Makefile
View file @
8a5943f2
...
...
@@ -45,7 +45,7 @@ else
CFLAGS
=
-O3
endif
ALL_CFLAGS
=
-Wall
-Werror-implicit-function-declaration
$(CFLAGS)
MAKE_FLAGS
=
--no-print-directory
CC
=
"
$(CC)
"
LL
=
"
$(LL)
"
MAKE_FLAGS
=
--no-print-directory
CC
=
$(CC)
LL
=
$(LL)
##############################
# generic build targets, rules
...
...
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