Une collection de notes diverses sur des trucs et astuces pour faire des choses avec un ordinateur...
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
######################################################
|
|
|
|
# TetaTricks
|
|
|
|
#
|
|
|
|
|
|
|
|
# exemples du bouquin
|
|
|
|
|
|
|
|
ex_curses: ex_curses.c Makefile
|
|
|
|
gcc -Wall $< -o $@ -lncurses
|
|
|
|
|
|
|
|
thread-demo: thread-demo.c Makefile
|
|
|
|
gcc -Wall -pthread $< -o $@
|
|
|
|
|
|
|
|
hello: hello.c Makefile
|
|
|
|
gcc -Wall $< -o $@
|
|
|
|
|
|
|
|
arguments: arguments.c Makefile
|
|
|
|
gcc -Wall $< -o $@
|
|
|
|
|
|
|
|
no-op: no-op.c Makefile
|
|
|
|
gcc -Wall $< -o $@
|
|
|
|
|
|
|
|
get-signal: get-signal.c Makefile
|
|
|
|
gcc -Wall $< -o $@
|