Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
NetWorld
Project
Project
Details
Activity
Releases
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
LAIRD Timothy
NetWorld
Commits
16563203
Commit
16563203
authored
Apr 06, 2021
by
Guillaume Lozenguez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clean MakeFile
parent
d171c0b2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
66 deletions
+0
-66
Makefile
Makefile
+0
-29
config.default
config.default
+0
-5
draf.md
draf.md
+0
-11
Makefile
src/Makefile
+0
-21
No files found.
Makefile
deleted
100644 → 0
View file @
d171c0b2
all
:
config
@
make
-C
src
config
:
cp
config.default config
unix
:
@
echo
"generate Bath config"
@
echo
"# Configuration for make"
>
config
@
echo
"CC=gcc"
>>
config
@
echo
"CFLAGS=-std=c99 -Wall -Wextra -lraylib"
>>
config
@
echo
"LIBS= -lraylib"
>>
config
@
echo
"OS=
`
uname
`
"
>>
config
windows
:
@
echo
"generate PowerShell config"
@
echo
# Configuration for make > config
@
echo
OS
=
Windows
>>
config
@
echo
CC
=
gcc
>>
config
@
echo
CFLAGS
=
-std
=
c99
-Wall
-Wextra
`
>>
config
@
echo
LIBS
=
-lraylib
>>
config
clean
:
@
make
-C
src clean
docs
:
@
doxygen Doxyfile
config.default
deleted
100644 → 0
View file @
d171c0b2
# Configuration for make
CC=gcc
CFLAGS=-std=c99 -Wall -Wextra -lraylib
LIBS= -lraylib
OS=Undef
draf.md
deleted
100644 → 0
View file @
d171c0b2
```mermaid
graph TD;
Antho-->Bobby;
Antho-->Clariss;
Bobby-->Dede;
Clariss-->Dede;
```
## ToDo :
-
Inclure IGraph
src/Makefile
deleted
100644 → 0
View file @
d171c0b2
include
../config
all
:
hello viewer
hello
:
main-hello.o
$(CC)
-o
../nw-
$@
$^
$(LIBS)
viewer
:
main-viewer.o networld.o
$(CC)
-o
../nw-
$@
$^
$(LIBS)
%.o
:
%.c
$(CC)
-c
$<
$(CFLAGS)
config
:
rm
config
"OS=
`
uname
`
"
>>
config
clean
:
rm
-rf
*
.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