9 lines
108 B
Plaintext
9 lines
108 B
Plaintext
|
|
rule cc
|
||
|
|
command = gcc -c -o $outs $ins
|
||
|
|
|
||
|
|
build foo.o: cc foo.c
|
||
|
|
|
||
|
|
build bar.o: cc bar.c
|
||
|
|
|
||
|
|
default foo.o bar.o
|