14 lines
298 B
Makefile
14 lines
298 B
Makefile
|
# BUT PRINCIPAL
|
||
|
repetition_ou_pas : main.o repetition.o
|
||
|
gcc -ansi -pedantic -o repetition_ou_pas repetition.o main.o
|
||
|
|
||
|
repetition.o : repetition.c
|
||
|
gcc -ansi -pedantic -c repetition.c
|
||
|
|
||
|
main.o : main.c repetition.h
|
||
|
gcc -ansi -pedantic -c main.c
|
||
|
|
||
|
clean :
|
||
|
rm -f main.o repetition.o
|
||
|
|
||
|
.PHONY : clean
|