2023-02-11 12:19:00 +01:00
|
|
|
|
|
|
|
# exemples pour le chapitre sur le C
|
|
|
|
# new Sat Feb 11 12:06:34 CET 2023
|
|
|
|
|
2023-09-01 12:37:36 +02:00
|
|
|
all: no-op slowprint fgets-simple
|
|
|
|
|
2023-02-11 12:19:00 +01:00
|
|
|
no-op: no-op.c Makefile
|
|
|
|
gcc -Wall $< -o $@
|
|
|
|
|
|
|
|
slowprint: slowprint.c Makefile
|
|
|
|
gcc -Wall $< -o $@
|
|
|
|
|
2023-07-15 09:55:13 +02:00
|
|
|
fgets-simple: fgets-simple.c Makefile
|
|
|
|
gcc -Wall $< -o $@
|
|
|
|
|
2023-09-01 12:37:36 +02:00
|
|
|
demo-strtok: demo-strtok.c Makefile
|
|
|
|
gcc -Wall $< -o $@
|