Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
INTBuilder
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chloe Dequeker
INTBuilder
Commits
022a2c80
Commit
022a2c80
authored
Oct 14, 2016
by
Chloe Dequeker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modif makefile to go in subdir src/
parent
1289b065
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
INTBuilder
INTBuilder
+0
-0
Makefile
Makefile
+8
-0
No files found.
INTBuilder
deleted
100755 → 0
View file @
1289b065
File deleted
Makefile
View file @
022a2c80
...
...
@@ -2,14 +2,22 @@ CC=gcc
CFLAGS
=
-c
-Wall
-g
-O3
LDFLAGS
=
-lm
SRC_DIR
=
src
<<<<<<<
HEAD
SOURCES
=
$(
shell
find
$(SRC_DIR)
-name
'*.c'
)
=======
SOURCES
=
$(
shell
find
$(SRC_DIR)
-name
"*.c"
)
>>>>>>>
Modif
makefile
to
go
in
subdir
src/
OBJECTS
=
$
(
SOURCES:.c
=
.o
)
BINARY
=
INTBuilder
all
:
$(BINARY)
$(BINARY)
:
$(OBJECTS)
<<<<<<<
HEAD
$(CC)
$^
-o
$@
$(LDFLAGS)
=======
$(CC)
$(OBJECTS)
-o
$@
$(LDFLAGS)
>>>>>>>
Modif
makefile
to
go
in
subdir
src/
%.o
:
%.c
$(CC)
$(CFLAGS)
$<
-o
$@
...
...
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