TetaTricks/code/Makefile

22 lines
370 B
Makefile
Raw Normal View History

2020-11-24 00:40:57 +01:00
######################################################
# TetaTricks
#
# exemples du bouquin
ex_curses: ex_curses.c Makefile
gcc -Wall $< -o $@ -lncurses
thread-demo: thread-demo.c Makefile
gcc -Wall -pthread $< -o $@
2021-07-30 23:45:42 +02:00
hello: hello.c Makefile
gcc -Wall $< -o $@
arguments: arguments.c Makefile
gcc -Wall $< -o $@
2021-08-13 09:24:46 +02:00
no-op: no-op.c Makefile
gcc -Wall $< -o $@