Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

fact: fact.o facth.

o
c++ -o $@ $^
fact.o: fact.cpp
c++ -c $<
facth.o: facth.cpp
c++ -c $<
clean:
rm *.o

fact: fact.o facth.o


c++ -o fact fact.o facth.o
fact.o: fact.cpp
c++ -c fact.pp
facth.o: facth.cpp
c++ -c facth.cpp
clean:
rm *.o
$ make

You might also like