Browse Source

* Add some phony targets

Michaël Van Canneyt 2 years ago
parent
commit
f9d7e989e5
1 changed files with 9 additions and 1 deletions
  1. 9 1
      packages/build/Makefile

+ 9 - 1
packages/build/Makefile

@@ -1,5 +1,13 @@
+.PHONY: distclean clean install
+
 all: Makefile.pkg
 
 Makefile.pkg: Makefile.fpc
 	fpmake -Tall -s -o Makefile.pkg Makefile.fpc
-	
+
+distclean:
+	echo Nothing to do.
+clean:
+	echo Nothing to do.
+install:
+	echo Nothing to do.