• Makefile's PHONY targets

    2 min read

    make Makefile .PHONY target

    When we create Makefile targets, we are actually defining "file targets": Make will try to create these files running the commands we are defining:

    target:
      command
    

    But sometimes we want to create some targets that do not represent physical files in the file system. A good example of that are the "clean" targets (as in make clean)

    15/02/2023

    Read more...

From pet to cattle
Treat your kubernetes clusters like cattle, not pets