Answers for "makefile phony"

0

makefile phony

.PHONY: clean
clean:
        rm *.o temp
Posted by: Guest on July-22-2021
0

makefile phony

.PHONY: cleanall cleanobj cleandiff

cleanall : cleanobj cleandiff
        rm program

cleanobj :
        rm *.o

cleandiff :
        rm *.diff
Posted by: Guest on July-22-2021

Browse Popular Code Answers by Language