14 lines
235 B
Makefile
14 lines
235 B
Makefile
|
|
# exemples pour le chapitre sur le C
|
|
# new Sat Feb 11 12:06:34 CET 2023
|
|
|
|
no-op: no-op.c Makefile
|
|
gcc -Wall $< -o $@
|
|
|
|
slowprint: slowprint.c Makefile
|
|
gcc -Wall $< -o $@
|
|
|
|
fgets-simple: fgets-simple.c Makefile
|
|
gcc -Wall $< -o $@
|
|
|