summaryrefslogtreecommitdiff
path: root/modules/dont_makefile
diff options
context:
space:
mode:
Diffstat (limited to 'modules/dont_makefile')
-rw-r--r--modules/dont_makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/dont_makefile b/modules/dont_makefile
new file mode 100644
index 00000000..f256ce1b
--- /dev/null
+++ b/modules/dont_makefile
@@ -0,0 +1,19 @@
+#########################################################################
+# This is a makefile that does nothing. It is designed to be included
+# by module Makefile-s when they are not compatable with the local
+# system
+#########################################################################
+
+all:
+ @echo "This module will not be compiled on this system"
+
+extraclean: clean
+
+install: clean
+
+clean:
+ @echo "Nothing to do"
+
+#########################################################################
+# all over..
+#########################################################################