summaryrefslogtreecommitdiff
path: root/modules/dont_makefile
blob: f256ce1b3a61cd73422b2717159ea3399a68e751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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..
#########################################################################