head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	97.01.04.20.22.25;	author morgan;	state Exp;
branches;
next	;


desc
@makefile include for not compiling a module
@


1.1
log
@Initial revision
@
text
@#########################################################################
# 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..
#########################################################################
@
