summaryrefslogtreecommitdiff
path: root/zwgc/Memory/Imakefile
blob: 5d018027826fbec47851ce8239b58be6bc04ba05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**/#	Copyright 1988, 1993 Massachusetts Institute of Technology.
/**/#
/**/#	For copying and distribution information, see the file
/**/#	"mit-copyright.h". 
/**/#
/**/#	$Id$

OBJS = new_memory.o
SRCS = new_memory.c

all:: memory_spec $(OBJS)

/**/# Automatically generate a spec file from the template include file:
memory_spec: new_memory.h
	cat new_memory.h | grep "^.\*" | grep -v "^ \*/" | sed 's/.\*//' > memory_spec

clean::
	$(RM) $(OBJS) memory_spec