Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cours_prog
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
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
yassin.elhakoun
cours_prog
Commits
1ad761a2
Commit
1ad761a2
authored
4 years ago
by
orestis.malaspin
Browse files
Options
Downloads
Patches
Plain Diff
added into and stuff
parent
ef419722
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+8
-23
8 additions, 23 deletions
Makefile
index.md
+6
-32
6 additions, 32 deletions
index.md
with
14 additions
and
55 deletions
Makefile
+
8
−
23
View file @
1ad761a2
...
...
@@ -15,13 +15,16 @@ REVEALOPTIONS += --self-contained
REVEALOPTIONS
+=
-V
revealjs-url
=
./reveal.js
REVEALOPTIONS
+=
-V
theme
=
white
all
:
base_4.pdf base_3.pdf base_2.pdf base_1.pdf intro.pdf index.html
all
:
base_4.pdf base_3.pdf base_2.pdf base_1.pdf intro.pdf
command_line.pdf
index.html
all_html
:
base_1.html base_2.html base_3.html base_4.html
all_html
:
intro.html
base_1.html base_2.html base_3.html base_4.html
command_line.html
intro.pdf
:
intro.md metadata.yaml
pandoc
$(
PDFOPTIONS
)
-o
$@
$^
intro.html
:
intro.md metadata.yaml
pandoc
$(
REVEALOPTIONS
)
-o
$@
$^
base_1.pdf
:
base_1.md metadata.yaml
pandoc
$(
PDFOPTIONS
)
-o
$@
$^
...
...
@@ -46,30 +49,12 @@ base_4.pdf: base_4.md metadata.yaml
base_4.html
:
base_4.md metadata.yaml
pandoc
$(
REVEALOPTIONS
)
-o
$@
$^
make.pdf
:
make.md metadata.yaml
pandoc
$(
PDFOPTIONS
)
-o
$@
$^
tests_assertions.pdf
:
tests_assertions.md metadata.yaml
pandoc
$(
PDFOPTIONS
)
-o
$@
$^
strings.pdf
:
strings.md metadata.yaml
pandoc
$(
PDFOPTIONS
)
-o
$@
$^
ligne_commande.pdf
:
ligne_commande.md metadata.yaml
pandoc
$(
PDFOPTIONS
)
-o
$@
$^
oral.pdf
:
oral.md metadata.yaml
pandoc
$(
PDFOPTIONS
)
-o
$@
$^
pointeurs_avances.pdf
:
pointeurs_avances.md metadata.yaml
pandoc
$(
PDFOPTIONS
)
-o
$@
$^
delaunay.pdf
:
delaunay.md metadata.yaml
pandoc
$(
PDFOPTIONS
)
-o
$@
$^
command_line.pdf
:
command_line.md metadata.yaml
pandoc
$(
PDFOPTIONS
)
-o
$@
$^
command_line.html
:
command_line.md metadata.yaml
pandoc
$(
REVEALOPTIONS
)
-o
$@
$^
index.html
:
index.md
pandoc
-s
$(
OPTIONS
)
$(
HTMLOPTIONS
)
-o
$@
$<
...
...
This diff is collapsed.
Click to expand it.
index.md
+
6
−
32
View file @
1ad761a2
...
...
@@ -24,20 +24,20 @@ corrige: false
# Cours de programmation séquentielle
## Introduction [PDF](intro.pdf)
## Introduction [PDF](intro.pdf)
, [HTML](intro.pdf)
-
Organisation du cours.
-
Évaluations.
-
Contacts.
## Introduction à la ligne de commande [PDF](command_line.pdf)
## Introduction à la ligne de commande [PDF](command_line.pdf)
, [HTML](command_line.html)
-
L'interface en ligne de commande.
-
Le terminal.
-
Quelques commandes utiles.
-
Les éditeurs de texte.
## Base 1 [PDF](base_1.pdf)
## Base 1 [PDF](base_1.pdf)
, [HTML](base_1.html)
-
Introduction générale au C.
-
Qu'est-ce qu'un programme?
...
...
@@ -46,14 +46,14 @@ corrige: false
-
Structures de contrôle.
-
Les variables.
## Base 2 [PDF](base_2.pdf)
## Base 2 [PDF](base_2.pdf)
, [HTML](base_2.html)
-
Représentation variables en mémoire.
-
Les pointeurs.
-
Les fonctions.
-
Les tableaux.
## Base 3 [PDF](base_3.pdf)
## Base 3 [PDF](base_3.pdf)
, [HTML](base_3.html)
-
Structures.
-
Allocation dynamique de mémoire.
...
...
@@ -61,35 +61,9 @@ corrige: false
-
Génération d'un exécutable.
-
Préprocesseur.
##
Introduction à `make` [PDF](make.pdf
)
##
Base 4 [PDF](base_4.pdf), [HTML](base_4.html
)
-
Représentation variables en mémoire.
-
Les pointeurs.
-
Les fonctions.
-
Les tableaux.
## Tests unitaires et assertions [PDF](tests_assertions.pdf)
-
Tests unitaires.
-
Assertions.
## Chaînes de caractères [PDF](strings.pdf)
-
Le type
`char *`
.
-
Les fonctions de manipulation de chaînes de caractères.
## Ligne de commande [PDF](ligne_commande.pdf)
-
Point d’entrée d’un programme.
-
Conversion des arguments.
## Pointeurs avancés [PDF](pointeurs_avances.pdf)
-
Pointeurs de fonctions.
-
Pointeurs et
`const`
.
## Algorithme de triangulation [PDF](delaunay.pdf)
-
Qu'est-ce qu'une triangulation?
-
La triangulation de Delaunay.
-
L'algorithme de Bowyer--Watson.
\ 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