Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Projet ZZ1
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OUMLIL
Projet ZZ1
Commits
f06cb53b
Commit
f06cb53b
authored
3 years ago
by
Adama Nana
Browse files
Options
Downloads
Patches
Plain Diff
Jeu de la vie
parent
17456f26
Branches
Adama_NANA
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Jeu_De_La_Vie/Makefile
+20
-0
20 additions, 0 deletions
Jeu_De_La_Vie/Makefile
with
20 additions
and
0 deletions
Jeu_De_La_Vie/Makefile
0 → 100644
+
20
−
0
View file @
f06cb53b
CC
=
gcc
Exec
=
prog
Src
=
$(
wildcard
*
.c
)
Obj
=
$(
Src:.c
=
.o
)
CFLAGS
=
-Wall
-Wextra
-I
/usr/include/SDL2
-D_REENTRANT
LDFLAGS
=
-lSDL2
#SDLFLAGS = $(sdl2-config --cflags --libs)
all
:
$(Exec)
%.o
:
%.c
$(
CC
)
$(
CFLAGS
)
-o
$@
-c
$<
-g
$(Exec)
:
$(Obj)
$(
CC
)
-o
$@
$^
$(
LDFLAGS
)
clean
:
rm
-rf
*
.o
mrproper
:
clean
rm
-rf
prog
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment