Search notes:

make: phony targets

Phony targets are targets that is not supposed to update or create a file, but is rather a sequence of shell commands to be executed (such as the often seen clean target). Thus, they can thought of as a shell script within the makefile.
In order to specifically tell make that a target is phony, there is the special .PHONY target name:
.PHONY: clean
	rm *.o
This .PHONY target name ensures that the rule is run even if a file with the name clean already exists in the current directory.

See also

make

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1745734158, '3.145.28.3', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/make/target/phony(44): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78